From 0afb011a4ae1e81fa06cff2c21aec7c5ba870097 Mon Sep 17 00:00:00 2001 From: tenplus1 Date: Thu, 22 Mar 2018 08:13:25 +0000 Subject: [PATCH] add food_ group to bowl added {food_bowl=1} group to bowl so it asheres to ruben's food crafting standards. --- src/cooking.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cooking.lua b/src/cooking.lua index 7d9d059..f217e11 100644 --- a/src/cooking.lua +++ b/src/cooking.lua @@ -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 +})