From 20f5741ed751bbd49cf03236520e55b0a578c21a Mon Sep 17 00:00:00 2001 From: Hugo_ <55756021+Dhaiven@users.noreply.github.com> Date: Sat, 6 Jul 2024 00:41:22 +0200 Subject: [PATCH] Bowl: Add fuel return value (#6384) --- src/item/Bowl.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/item/Bowl.php b/src/item/Bowl.php index d83044307..217346df5 100644 --- a/src/item/Bowl.php +++ b/src/item/Bowl.php @@ -25,5 +25,7 @@ namespace pocketmine\item; class Bowl extends Item{ - //TODO: check fuel + public function getFuelTime() : int{ + return 200; + } }