Skip to content

Commit

Permalink
More Distilling RA2 Fixes (#1936)
Browse files Browse the repository at this point in the history
* fix DT durations

* salt water distill fix
  • Loading branch information
chochem authored Apr 30, 2023
1 parent 9e14624 commit 03b11c4
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public void run() {
// (NaCl·H2O) = NaCl + H2O

GT_Values.RA.stdBuilder()
.noItemInputs()
.itemInputs(GT_Utility.getIntegratedCircuit(1))
.itemOutputs(Materials.Salt.getDust(2))
.fluidInputs(Materials.SaltWater.getFluid(1000))
.fluidOutputs(GT_ModHandler.getDistilledWater(1000))
Expand Down Expand Up @@ -1291,8 +1291,8 @@ public void addUniversalDistillationRecipewithCircuit(FluidStack aInput, ItemSta
}
buildDT.fluidInputs(aInput)
.fluidOutputs(aOutputs)
.duration(20 * SECONDS)
.eut(TierEU.RECIPE_MV)
.duration(aDuration)
.eut(aEUt)
.addTo(sDistillationRecipes);
}

Expand Down Expand Up @@ -1321,8 +1321,8 @@ public void addUniversalDistillationRecipe(FluidStack aInput, FluidStack[] aOutp
}
buildDT.fluidInputs(aInput)
.fluidOutputs(aOutputs)
.duration(20 * SECONDS)
.eut(TierEU.RECIPE_MV)
.duration(aDuration)
.eut(aEUt)
.addTo(sDistillationRecipes);
}
}

0 comments on commit 03b11c4

Please sign in to comment.