diff --git a/Clowns-Processing/prototypes/recipes/angels-smelting.lua b/Clowns-Processing/prototypes/recipes/angels-smelting.lua index ab6063d0..5a8b8c36 100644 --- a/Clowns-Processing/prototypes/recipes/angels-smelting.lua +++ b/Clowns-Processing/prototypes/recipes/angels-smelting.lua @@ -16,7 +16,7 @@ if mods["bobplates"] or (mods["angelsindustries"] and angelsmods.industries.over ingredients = { {type="item", name="ingot-iron", amount=12}, - {type="item", name="ingot-magnesium", amount=12}, + {type="item", name="ingot-cobalt", amount=12}, {type="item", name="ingot-manganese", amount=12}, }, results= diff --git a/angelssmelting/prototypes/recipes/smelting-iron.lua b/angelssmelting/prototypes/recipes/smelting-iron.lua index 936c1631..a7d6691b 100644 --- a/angelssmelting/prototypes/recipes/smelting-iron.lua +++ b/angelssmelting/prototypes/recipes/smelting-iron.lua @@ -213,9 +213,9 @@ data:extend({ energy_required = 4, enabled = false, ingredients = { - { type = "item", name = "ingot-iron", amount = 24 }, + { type = "item", name = "ingot-iron", amount = 12 }, { type = "item", name = "ingot-nickel", amount = 12 }, --- { type = "item", name = "ingot-cobalt", amount = 12 }, + { type = "item", name = "ingot-cobalt", amount = 12 }, }, results = { { type = "fluid", name = "liquid-molten-iron", amount = 360 }, diff --git a/bobelectronics/prototypes/electronics.lua b/bobelectronics/prototypes/electronics.lua index 830a33a2..d11568ad 100644 --- a/bobelectronics/prototypes/electronics.lua +++ b/bobelectronics/prototypes/electronics.lua @@ -366,10 +366,12 @@ data:extend({ category = "electronics", energy_required = 1, ingredients = { - { "wooden-board", 1 }, + { "wooden-board", 2 }, { "copper-cable", 3 }, }, - result = "basic-circuit-board", + results = { + { type = "item", name = "basic-circuit-board", amount = 2 } + }, allow_decomposition = false, }, })