From 0cc7b87076f284404d4ae6e52697e61c23bda8f4 Mon Sep 17 00:00:00 2001 From: Lunovox Date: Sat, 16 Mar 2024 18:47:55 -0300 Subject: [PATCH] [fix] Fix the recipe of wires --- components_recipes.lua | 9 +++++++++ 1 file changed, 9 insertions(+) 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"} } }) --########################################################################################################################