diff --git a/components_recipes.lua b/components_recipes.lua index 34e1353..057362f 100644 --- a/components_recipes.lua +++ b/components_recipes.lua @@ -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"} } }) --########################################################################################################################