removed the code I used during debugging

Now, suspicious stews are no longer in the creative inventory, and have to be crafted or obtained using /giveme
This commit is contained in:
chmodsayshello 2022-01-01 12:23:13 +00:00
parent a03e532a85
commit fa892e880e
1 changed files with 5 additions and 5 deletions

View File

@ -53,7 +53,7 @@ minetest.register_craftitem("mcl_mushrooms:poison_stew",{
inventory_image = "suspicious_stew.png",
stack_max = 1,
on_place = poison,
groups = { food = 2, eatable = 4, not_in_creative_inventory=0,},
groups = { food = 2, eatable = 4, not_in_creative_inventory=1,},
_mcl_saturation = 7.2,
})
@ -62,7 +62,7 @@ minetest.register_craftitem("mcl_mushrooms:hunger_stew",{
inventory_image = "suspicious_stew.png",
stack_max = 1,
on_place = hunger,
groups = { food = 2, eatable = 4, not_in_creative_inventory=0,},
groups = { food = 2, eatable = 4, not_in_creative_inventory=1,},
_mcl_saturation = 7.2,
})
@ -71,7 +71,7 @@ minetest.register_craftitem("mcl_mushrooms:jump_boost_stew",{
inventory_image = "suspicious_stew.png",
stack_max = 1,
on_place = jump_boost,
groups = { food = 2, eatable = 4, not_in_creative_inventory=0,},
groups = { food = 2, eatable = 4, not_in_creative_inventory=1,},
_mcl_saturation = 7.2,
})
@ -80,7 +80,7 @@ minetest.register_craftitem("mcl_mushrooms:regneration_stew",{
inventory_image = "suspicious_stew.png",
stack_max = 1,
on_place = regeneration,
groups = { food = 2, eatable = 4, not_in_creative_inventory=0,},
groups = { food = 2, eatable = 4, not_in_creative_inventory=1,},
_mcl_saturation = 7.2,
})
@ -89,7 +89,7 @@ minetest.register_craftitem("mcl_mushrooms:night_vision_stew",{
inventory_image = "suspicious_stew.png",
stack_max = 1,
on_place = night_vision,
groups = { food = 2, eatable = 4, not_in_creative_inventory=0,},
groups = { food = 2, eatable = 4, not_in_creative_inventory=1,},
_mcl_saturation = 7.2,
})