Slab: ignore silk touch on breaking tools, closes #2794

This commit is contained in:
Dylan K. Taylor 2020-05-21 11:46:43 +01:00
parent 8ec2ba79de
commit 72f59eca3c

View File

@ -128,4 +128,8 @@ class Slab extends Transparent{
public function getDropsForCompatibleTool(Item $item) : array{
return [$this->asItem()->setCount($this->slabType->equals(SlabType::DOUBLE()) ? 2 : 1)];
}
public function isAffectedBySilkTouch() : bool{
return false;
}
}