diff options
Diffstat (limited to 'extra.lua')
-rw-r--r-- | extra.lua | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -136,13 +136,17 @@ minetest.register_craftitem("ethereal:bowl", { groups = {food_bowl = 1, flammable = 2}, }) -minetest.register_craft({ - output = "ethereal:bowl 4", - recipe = { - {"group:wood", "", "group:wood"}, - {"", "group:wood", ""}, - } -}) +-- use farming redo's recipe if found +if not minetest.registered_items["farming:bowl"] then + + minetest.register_craft({ + output = "ethereal:bowl 4", + recipe = { + {"group:wood", "", "group:wood"}, + {"", "group:wood", ""}, + } + }) +end -- stone Ladder minetest.register_node("ethereal:stone_ladder", { @@ -229,7 +233,6 @@ minetest.register_craft({ minetest.register_craftitem("ethereal:charcoal_lump", { description = S("Lump of Charcoal"), inventory_image = "charcoal_lump.png", - wield_image = "charcoal_lump.png", }) minetest.register_craft({ |