mirror of
https://gitlab.com/lunovox/components.git
synced 2025-03-15 08:01:22 +00:00
[fix] Fix the recipe of wires
This commit is contained in:
parent
433f88ed55
commit
0cc7b87076
1 changed files with 9 additions and 0 deletions
|
@ -13,6 +13,9 @@ minetest.register_craft({
|
|||
{"", "", "default:steel_ingot"},
|
||||
{"", "default:steel_ingot", ""},
|
||||
{"components:steel_core", "", ""}
|
||||
},
|
||||
replacements = {
|
||||
{"components:steel_core", "components:steel_core"}
|
||||
}
|
||||
})
|
||||
--########################################################################################################################
|
||||
|
@ -22,6 +25,9 @@ minetest.register_craft({
|
|||
{"", "", "default:copper_ingot"},
|
||||
{"", "default:copper_ingot", ""},
|
||||
{"components:steel_core", "", ""}
|
||||
},
|
||||
replacements = {
|
||||
{"components:steel_core", "components:steel_core"}
|
||||
}
|
||||
})
|
||||
--########################################################################################################################
|
||||
|
@ -31,6 +37,9 @@ minetest.register_craft({
|
|||
{"", "", "default:gold_ingot"},
|
||||
{"", "default:gold_ingot", ""},
|
||||
{"components:steel_core", "", ""}
|
||||
},
|
||||
replacements = {
|
||||
{"components:steel_core", "components:steel_core"}
|
||||
}
|
||||
})
|
||||
--########################################################################################################################
|
||||
|
|
Loading…
Add table
Reference in a new issue