mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-24 09:50:31 +01:00
fix brass block->ingot recipe
(clearing basic_materials' copper/silver recipe killed this one also)
This commit is contained in:
parent
f5bf0d98b1
commit
bdd13beeff
@ -44,6 +44,12 @@ minetest.clear_craft({
|
|||||||
output = "basic_materials:brass_ingot",
|
output = "basic_materials:brass_ingot",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft( {
|
||||||
|
type = "shapeless",
|
||||||
|
output = "basic_materials:brass_ingot 9",
|
||||||
|
recipe = { "basic_materials:brass_block" },
|
||||||
|
})
|
||||||
|
|
||||||
-- tubes crafting recipes
|
-- tubes crafting recipes
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
Loading…
Reference in New Issue
Block a user