From 35a28300f6c4a83153087cca54bfe2ffa7d9c185 Mon Sep 17 00:00:00 2001 From: ipad54 <63200545+ipad54@users.noreply.github.com> Date: Mon, 7 Aug 2023 13:47:29 +0300 Subject: [PATCH] Podzol should be affected by silk touch (#5969) --- src/block/Podzol.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/block/Podzol.php b/src/block/Podzol.php index 4eb720573..33285cc0e 100644 --- a/src/block/Podzol.php +++ b/src/block/Podzol.php @@ -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()