diff options
author | root <root@linux-forks.de> | 2018-09-14 16:56:37 +0200 |
---|---|---|
committer | root <root@linux-forks.de> | 2018-09-14 16:56:37 +0200 |
commit | 31fe2ff374e72fb8ea44d50cd82d6fc8b9be5463 (patch) | |
tree | 87768ea1339a0c838716d8bb3418e35a80b00c46 /extra.lua | |
parent | b32bd2d50b685e9f550f1138d3db1ed0c6504d2c (diff) | |
parent | 43d62b57428b4738a7e8cee0fae78b1147f9b085 (diff) |
Merge branch 'master' of https://notabug.org/TenPlus1/ethereal
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({ |