diff --git a/src/block/Cobweb.php b/src/block/Cobweb.php index 680af1595..785db721d 100644 --- a/src/block/Cobweb.php +++ b/src/block/Cobweb.php @@ -39,6 +39,9 @@ class Cobweb extends Flowable{ } public function getDropsForCompatibleTool(Item $item) : array{ + if(($item->getBlockToolType() & BlockToolType::SHEARS) !== 0){ + return [$this->asItem()]; + } return [ VanillaItems::STRING() ];