]> git.lizzy.rs Git - xdecor.git/commitdiff
add food_ group to bowl
authortenplus1 <tenplus1@users.noreply.github.com>
Thu, 22 Mar 2018 08:13:25 +0000 (08:13 +0000)
committerkilbith <kilbith@users.noreply.github.com>
Thu, 22 Mar 2018 11:11:31 +0000 (12:11 +0100)
added {food_bowl=1} group to bowl so it asheres to ruben's food crafting standards.

src/cooking.lua

index 7d9d05920389fdf38c4d3133aa2131bba3d6524f..f217e11a9bfe79c377e796837386ad61435de7d8 100644 (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"}
        }
-})
\ No newline at end of file
+})