From 9ea12e450a95d364c527c3eb75aaafb5ee0e225a Mon Sep 17 00:00:00 2001 From: chmodsayshello Date: Tue, 28 Dec 2021 11:27:58 +0000 Subject: [PATCH] fix bowl disappering after eating the hunger stew --- init.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index e2634dd2e5..2ce2354cd1 100644 --- a/init.lua +++ b/init.lua @@ -74,7 +74,8 @@ minetest.register_craftitem("mcl_sus_stew:night_vision_stew",{ -- ____________________________ --______________________________________/ Using mcl_hunger API \______________________ -mcl_hunger.register_food("mcl_sus_stew:hunger_stew",10, "", 3.5, 0, 100) -- Register it using mcl_hunger so i can use its poison feature +mcl_hunger.register_food("mcl_sus_stew:hunger_stew",6, "mcl_core:bowl", 3.5, 0, 100) -- Register it using mcl_hunger so i can use its poison feature + -- ______________ --_________________________________________/ Crafts \________________________________