mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-02-17 02:55:02 +01:00
Fix item replacement for mushroom stew
This commit is contained in:
parent
d80e2d0bf9
commit
e614ae73aa
1 changed files with 2 additions and 2 deletions
|
@ -35,8 +35,8 @@ minetest.register_node("farming:mushroom_red", {
|
||||||
|
|
||||||
minetest.register_craftitem("farming:mushroom_stew", {
|
minetest.register_craftitem("farming:mushroom_stew", {
|
||||||
description = "Mushroom Stew",
|
description = "Mushroom Stew",
|
||||||
inventory_image = "farming_mushroom_stew.png",
|
inventory_image = "farming_mushroom_stew.png",
|
||||||
on_use = minetest.item_eat(6),
|
on_use = minetest.item_eat(6, "default:bowl"),
|
||||||
groups = { food = 2, eatable = 6 },
|
groups = { food = 2, eatable = 6 },
|
||||||
stack_max = 1,
|
stack_max = 1,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue