summaryrefslogtreecommitdiff
path: root/extra.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2018-09-03 20:43:00 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2018-09-03 20:43:00 +0100
commit0ea9f423ca076f42d82059be3f5e4d9ad23ce30b (patch)
tree3609352df74f57b0e16ab592fc4127f4a6213323 /extra.lua
parent9ae811465ea37703f9ee85dfd97f7082190e60ea (diff)
redo schems, add firethorn and igloo, tweak mapgen
Diffstat (limited to 'extra.lua')
-rw-r--r--extra.lua18
1 files changed, 11 insertions, 7 deletions
diff --git a/extra.lua b/extra.lua
index af097c4..9de0fb7 100644
--- a/extra.lua
+++ b/extra.lua
@@ -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", {