Farmland: fixed block picking

This commit is contained in:
Dylan K. Taylor 2018-09-20 12:03:01 +01:00
parent 24a6bf7365
commit 758d9b9784

View File

@ -111,4 +111,8 @@ class Farmland extends Transparent{
public function isAffectedBySilkTouch() : bool{
return false;
}
public function getPickedItem() : Item{
return ItemFactory::get(Item::DIRT);
}
}