Skip to content

Commit

Permalink
Merge pull request #1165 from trexxet/tce_teca_quickfix
Browse files Browse the repository at this point in the history
Fix colliding CSTR recipes for TeCA and TCE
  • Loading branch information
planetme authored Dec 15, 2024
2 parents 7e832ac + ae28914 commit 44834ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion groovy/postInit/chemistry/organic_chemistry/Solvents.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -67,7 +68,7 @@ CSTR.recipeBuilder()
// TCE (trichloroethylene)

CSTR.recipeBuilder()
.notConsumable(ore('springKanthal'))
.circuitMeta(2)
.fluidInputs(fluid('one_two_dichloroethane') * 50)
.fluidInputs(fluid('chlorine') * 200)
.fluidOutputs(fluid('trichloroethylene') * 50)
Expand Down

0 comments on commit 44834ea

Please sign in to comment.