forked from VoxeLibre/VoxeLibre
Fix item replacement for mushroom stew
This commit is contained in:
parent
d80e2d0bf9
commit
e614ae73aa
|
@ -36,7 +36,7 @@ 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 New Issue