From da12a0a5b2d039e0543070941662e862d8fc7297 Mon Sep 17 00:00:00 2001 From: chmodsayshello Date: Tue, 28 Dec 2021 16:07:47 +0000 Subject: [PATCH] removed ALL suspicious stews from the creative inventory See https://minecraft.fandom.com/wiki/Suspicious_Stew --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 62b239a36..e49471e56 100644 --- a/init.lua +++ b/init.lua @@ -64,7 +64,7 @@ minetest.register_craftitem("mcl_sus_stew:regneration_stew",{ inventory_image = "sus_stew.png", stack_max = 1, on_place = regeneration, - groups = { food = 2, eatable = 4,}, --Only the regeneration Suspicious Stew is in the creative inventory so there are not 5 identical looking items in it + groups = { food = 2, eatable = 4, not_in_creative_inventory=1,}, _mcl_saturation = 7.2, })