Remove redundant isAffectedBySilkTouch() overrides

this was needed previously to prevent dropping blockitems when these blocks were destroyed. Now the item form is always yielded instead.
This commit is contained in:
Dylan K. Taylor
2019-03-01 13:34:32 +00:00
parent 12dfcc9eb6
commit 80ac0180b3
4 changed files with 6 additions and 22 deletions

View File

@ -115,8 +115,4 @@ class Skull extends Flowable{
public function asItem() : Item{
return ItemFactory::get(Item::SKULL, $this->skullType->getMagicNumber());
}
public function isAffectedBySilkTouch() : bool{
return false;
}
}