From e9700e21d41a0ce62eecb79cc730d003205c1a4c Mon Sep 17 00:00:00 2001 From: trexxet Date: Sun, 15 Dec 2024 04:38:35 +0500 Subject: [PATCH 1/2] Fix colliding CSTR recipes for TeCA and TCE --- groovy/postInit/chemistry/organic_chemistry/Solvents.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/groovy/postInit/chemistry/organic_chemistry/Solvents.groovy b/groovy/postInit/chemistry/organic_chemistry/Solvents.groovy index 988a8c9fb..e02ef5981 100644 --- a/groovy/postInit/chemistry/organic_chemistry/Solvents.groovy +++ b/groovy/postInit/chemistry/organic_chemistry/Solvents.groovy @@ -56,6 +56,7 @@ FBR.recipeBuilder() // TeCA (1,1,2,2-tetrachloroethane / R130) CSTR.recipeBuilder() + .circuitMeta(1) .fluidInputs(fluid('one_two_dichloroethane') * 50) .fluidInputs(fluid('chlorine') * 200) .fluidOutputs(fluid('one_one_two_two_tetrachloroethane') * 50) @@ -67,6 +68,7 @@ CSTR.recipeBuilder() // TCE (trichloroethylene) CSTR.recipeBuilder() + .circuitMeta(2) .notConsumable(ore('springKanthal')) .fluidInputs(fluid('one_two_dichloroethane') * 50) .fluidInputs(fluid('chlorine') * 200) From ae28914f2773aabda3ab07eedb4d0cc80528c957 Mon Sep 17 00:00:00 2001 From: trexxet Date: Mon, 16 Dec 2024 00:24:32 +0500 Subject: [PATCH 2/2] Remove Kanthal spring from TCE --- groovy/postInit/chemistry/organic_chemistry/Solvents.groovy | 1 - 1 file changed, 1 deletion(-) diff --git a/groovy/postInit/chemistry/organic_chemistry/Solvents.groovy b/groovy/postInit/chemistry/organic_chemistry/Solvents.groovy index e02ef5981..2ea68ebee 100644 --- a/groovy/postInit/chemistry/organic_chemistry/Solvents.groovy +++ b/groovy/postInit/chemistry/organic_chemistry/Solvents.groovy @@ -69,7 +69,6 @@ CSTR.recipeBuilder() CSTR.recipeBuilder() .circuitMeta(2) - .notConsumable(ore('springKanthal')) .fluidInputs(fluid('one_two_dichloroethane') * 50) .fluidInputs(fluid('chlorine') * 200) .fluidOutputs(fluid('trichloroethylene') * 50)