mirror of
https://github.com/mt-mods/basic_materials.git
synced 2024-11-22 22:13:44 +01:00
Update metals.lua
This commit is contained in:
parent
bbdfd041fb
commit
b4571bac33
19
metals.lua
19
metals.lua
@ -245,14 +245,17 @@ minetest.register_craft( {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft( {
|
if not minetest.get_modpath("moreores") then
|
||||||
output = "basic_materials:brass_ingot 9",
|
-- Without moreores, there still should be a way to create brass.
|
||||||
recipe = {
|
minetest.register_craft( {
|
||||||
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
|
output = "basic_materials:brass_ingot 9",
|
||||||
{"default:steel_ingot", "default:copper_ingot", "default:steel_ingot"},
|
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:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
|
Loading…
Reference in New Issue
Block a user