Podzol should be affected by silk touch (#5969)

This commit is contained in:
ipad54 2023-08-07 13:47:29 +03:00 committed by GitHub
parent 81941ae9e5
commit 35a28300f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,10 @@ use pocketmine\item\Item;
class Podzol extends Opaque{
public function isAffectedBySilkTouch() : bool{
return true;
}
public function getDropsForCompatibleTool(Item $item) : array{
return [
VanillaBlocks::DIRT()->asItem()