From 2e2ecfe4dc95935bdf6a891fbd8fa53c03dbfc68 Mon Sep 17 00:00:00 2001 From: Brevven Date: Sat, 13 Aug 2022 00:42:04 -0700 Subject: [PATCH] hcl pure recipe fix --- chlorine.lua | 2 +- pcb.lua | 11 +++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/chlorine.lua b/chlorine.lua index 8986551..4894b98 100644 --- a/chlorine.lua +++ b/chlorine.lua @@ -66,7 +66,7 @@ data:extend({ { type = "recipe", name = "hydrogen-chloride-pure", - results = {{type="fluid", name="hydrogen-chloride", amount=10}}, + results = {{type="fluid", name="hydrogen-chloride", amount=20}}, ingredients = { {type="fluid", name="water", amount=10}, {type="fluid", name="chlorine", amount=10}, diff --git a/pcb.lua b/pcb.lua index 7ad8586..9e22931 100644 --- a/pcb.lua +++ b/pcb.lua @@ -22,7 +22,6 @@ data:extend({ }) -local amount = mods.Krastorio2 and 2 or 1 data:extend({ { type = "recipe", @@ -42,17 +41,17 @@ data:extend({ type = "recipe", name = "pcb", results = { - {"pcb", amount}, + {"pcb", 2}, }, ingredients = { - {"pcb-substrate", amount}, - {"copper-plate", 1}, - util.me.more() and {"ferric-chloride", 1} or {type="fluid", name="hydrogen-chloride", amount=10}, + {"pcb-substrate", 2}, + {"copper-plate", 2}, + util.me.more() and {"ferric-chloride", 1} or {type="fluid", name="hydrogen-chloride", amount=15}, {type="fluid", name="water", amount=10}, }, enabled = false, category = "crafting-with-fluid", - energy_required = amount, + energy_required = 4, }, })