mirror of
https://github.com/mt-mods/basic_materials.git
synced 2024-11-26 07:23:48 +01:00
allow crafting of brass_ingot without moreores
This commit is contained in:
parent
78a9b38f55
commit
4a9ea71342
@ -245,6 +245,15 @@ minetest.register_craft( {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft( {
|
||||||
|
output = "basic_materials:brass_ingot 9",
|
||||||
|
recipe = {
|
||||||
|
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
|
||||||
|
{"default:steel_ingot", "default:copper_ingot", "default:steel_ingot"},
|
||||||
|
{"default:copper_ingot", "default:tin_ingot", "default:copper_ingot"},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "basic_materials:brass_ingot 9",
|
output = "basic_materials:brass_ingot 9",
|
||||||
|
Loading…
Reference in New Issue
Block a user