From 68d2e2915ecd138c1eb4c4eff41eed40584c388f Mon Sep 17 00:00:00 2001 From: Arie1906 Date: Mon, 8 Jul 2024 03:20:45 +0700 Subject: [PATCH] Bells always drops themselves (#4802) --- src/block/Bell.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/block/Bell.php b/src/block/Bell.php index ec033cef8..53a6fc7fb 100644 --- a/src/block/Bell.php +++ b/src/block/Bell.php @@ -150,6 +150,10 @@ final class Bell extends Transparent{ } } + public function getDropsForIncompatibleTool(Item $item) : array{ + return [$this->asItem()]; + } + private function isValidFaceToRing(int $faceHit) : bool{ return match($this->attachmentType){ BellAttachmentType::CEILING => true,