Fix item replacement for mushroom stew

This commit is contained in:
Wuzzy 2017-01-20 18:38:12 +01:00
parent d80e2d0bf9
commit e614ae73aa
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ minetest.register_node("farming:mushroom_red", {
minetest.register_craftitem("farming:mushroom_stew", {
description = "Mushroom Stew",
inventory_image = "farming_mushroom_stew.png",
on_use = minetest.item_eat(6),
inventory_image = "farming_mushroom_stew.png",
on_use = minetest.item_eat(6, "default:bowl"),
groups = { food = 2, eatable = 6 },
stack_max = 1,
})