[fix] Fix the recipe of wires

This commit is contained in:
Lunovox 2024-03-16 18:47:55 -03:00
parent 433f88ed55
commit 0cc7b87076

View file

@ -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"}
}
})
--########################################################################################################################