1
0
mirror of https://codeberg.org/minenux/minetest-mod-xdecor synced 2023-10-20 21:43:39 -07:00

add food_ group to bowl

added {food_bowl=1} group to bowl so it asheres to ruben's food crafting standards.
This commit is contained in:
tenplus1 2018-03-22 08:13:25 +00:00 committed by kilbith
parent 471af9b080
commit 0afb011a4a

View File

@ -204,6 +204,7 @@ minetest.register_craftitem("xdecor:bowl", {
description = "Bowl",
inventory_image = "xdecor_bowl.png",
wield_image = "xdecor_bowl.png"
groups = {food_bowl = 1, flammable = 2},
})
minetest.register_craftitem("xdecor:bowl_soup", {
@ -232,4 +233,4 @@ minetest.register_craft({
{"default:iron_lump", "", "default:iron_lump"},
{"default:iron_lump", "default:iron_lump", "default:iron_lump"}
}
})
})