This commit is contained in:
Milan2018 2021-09-24 21:06:53 +02:00
parent e6a3450571
commit 47e66b3b13
2 changed files with 9 additions and 12 deletions

View File

@ -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.
minetest.register_craft( {
output = "basic_materials:brass_ingot 9",
recipe = {
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
{"default:gold_ingot", "default:copper_ingot", "default:gold_ingot"},
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
},
})
end
-- Without moreores, there still should be a way to create brass.
minetest.register_craft( {
output = "basic_materials:brass_ingot 9",
recipe = {
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
{"default:gold_ingot", "default:copper_ingot", "default:gold_ingot"},
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
},
})
minetest.register_craft( {
type = "shapeless",

View File

@ -1,4 +1,3 @@
name = basic_materials
depends = default
optional_depends = moreores
min_minetest_version = 5.2.0