From 5c24be2861595befd2a50f804cf953ae156da72e Mon Sep 17 00:00:00 2001 From: Aleksei-bird Date: Tue, 16 Jun 2026 09:21:55 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=80=D0=B5=D1=86=D0=B5=D0=BF=D1=82=D1=8B:=20-=20=D1=80=D0=B0?= =?UTF-8?q?=D1=81=D0=BF=D0=BB=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=BD=D0=BE?= =?UTF-8?q?=D0=B5=20=D0=B6=D0=B5=D0=BB=D0=B5=D0=B7=D0=BE=20=D1=82=D0=B8?= =?UTF-8?q?=D1=80=206,=D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB=20=D0=BC?= =?UTF-8?q?=D0=B0=D0=B3=D0=BD=D0=B8=D0=B9=20=D0=BD=D0=B0=20=D0=BA=D0=BE?= =?UTF-8?q?=D0=B1=D0=B0=D0=BB=D1=8C=D1=82=20-=20=D1=80=D0=B0=D1=81=D0=BF?= =?UTF-8?q?=D0=BB=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=BD=D0=BE=D0=B5=20=D0=B6?= =?UTF-8?q?=D0=B5=D0=BB=D0=B5=D0=B7=D0=BE=20=D1=82=D0=B8=D1=80=204,=20?= =?UTF-8?q?=D0=B2=D0=BE=D1=81=D1=81=D1=82=D0=B0=D0=BD=D0=BE=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D1=80=D0=B0=D0=BD=D0=B5=D0=B5=20=D0=B2=D1=8B=D0=BA?= =?UTF-8?q?=D0=BB=D1=8E=D1=87=D0=B5=D0=BD=D0=BD=D1=8B=D0=B9=20=D0=BA=D0=BE?= =?UTF-8?q?=D0=B1=D0=B0=D0=BB=D1=8C=D1=82=20-=20=D1=83=D0=B2=D0=B5=D0=BB?= =?UTF-8?q?=D0=B8=D1=87=D0=B8=D0=BB=20=D0=BA=D0=BE=D0=BC=D0=BF=D0=BE=D0=BD?= =?UTF-8?q?=D0=B5=D0=BD=D1=82=D1=8B=20=D0=B8=20=D0=B2=D1=8B=D1=85=D0=BE?= =?UTF-8?q?=D0=B4=20"=D0=94=D0=B5=D1=80=D0=B5=D0=B2=D1=8F=D0=BD=D0=BD?= =?UTF-8?q?=D0=B0=D1=8F=20=D0=BF=D0=BB=D0=B0=D1=82=D0=B0"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Clowns-Processing/prototypes/recipes/angels-smelting.lua | 2 +- angelssmelting/prototypes/recipes/smelting-iron.lua | 4 ++-- bobelectronics/prototypes/electronics.lua | 6 ++++-- 3 files changed, 7 insertions(+), 5 deletions(-) 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, }, })