bug fix
This commit is contained in:
parent
e6a3450571
commit
47e66b3b13
2 changed files with 9 additions and 12 deletions
|
@ -245,17 +245,15 @@ minetest.register_craft( {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
if not minetest.get_modpath("moreores") then
|
-- Without moreores, there still should be a way to create brass.
|
||||||
-- Without moreores, there still should be a way to create brass.
|
minetest.register_craft( {
|
||||||
minetest.register_craft( {
|
output = "basic_materials:brass_ingot 9",
|
||||||
output = "basic_materials:brass_ingot 9",
|
recipe = {
|
||||||
recipe = {
|
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
|
||||||
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
|
{"default:gold_ingot", "default:copper_ingot", "default:gold_ingot"},
|
||||||
{"default:gold_ingot", "default:copper_ingot", "default:gold_ingot"},
|
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
|
||||||
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
|
},
|
||||||
},
|
})
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
name = basic_materials
|
name = basic_materials
|
||||||
depends = default
|
depends = default
|
||||||
optional_depends = moreores
|
|
||||||
min_minetest_version = 5.2.0
|
min_minetest_version = 5.2.0
|
||||||
|
|
Loading…
Reference in a new issue