aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders
diff options
context:
space:
mode:
authorSteelux <70096037+Steelux8@users.noreply.github.com>2022-02-04 16:24:51 +0000
committerGitHub <noreply@github.com>2022-02-04 17:24:51 +0100
commite7e83bfbd2b38b52fff87018409812b778b58a34 (patch)
tree3c757f823a16fe28e7da568c7814db8dde18b706 /src/main/java/gregtech/loaders
parenta48a158ad76dfa0b8d74894bbbe8d2520ff760af (diff)
downloadGT5-Unofficial-e7e83bfbd2b38b52fff87018409812b778b58a34.tar.gz
GT5-Unofficial-e7e83bfbd2b38b52fff87018409812b778b58a34.tar.bz2
GT5-Unofficial-e7e83bfbd2b38b52fff87018409812b778b58a34.zip
Changed DT Water Distillation Recipe (#918)
* Changed DT Water Distillation Recipe - Changed input and output values to match, and rounded them up to a round number. * Changed Values to 1000L - Changed input and output to 1 bucket, about 4 times what they were before, and doubled both the duration and EU/t cost. * Changed EU/t to Allow Some Loss in MV
Diffstat (limited to 'src/main/java/gregtech/loaders')
-rw-r--r--src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java b/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java
index 618237619b..f75d2f170e 100644
--- a/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java
+++ b/src/main/java/gregtech/loaders/postload/GT_MachineRecipeLoader.java
@@ -1196,7 +1196,7 @@ public class GT_MachineRecipeLoader implements Runnable {
GT_Values.RA.addDistillationTowerRecipe(Materials.SeedOil.getFluid(1400L), new FluidStack[]{Materials.Lubricant.getFluid(500L)}, null, 400, 120);
GT_Values.RA.addDistillationTowerRecipe(Materials.FishOil.getFluid(1200L), new FluidStack[]{Materials.Lubricant.getFluid(500L)}, null, 400, 120);
GT_Values.RA.addDistillationTowerRecipe(Materials.Biomass.getFluid(1000L), new FluidStack[]{Materials.Ethanol.getFluid(600L), Materials.Water.getFluid(300L)}, GT_OreDictUnificator.get(OrePrefixes.dustSmall, Materials.Wood, 2L), 32, 400);
- GT_Values.RA.addDistillationTowerRecipe(Materials.Water.getFluid(288L), new FluidStack[]{GT_ModHandler.getDistilledWater(260L)}, null, 16, 64);
+ GT_Values.RA.addDistillationTowerRecipe(Materials.Water.getFluid(1000L), new FluidStack[]{GT_ModHandler.getDistilledWater(1000L)}, null, 32, 120);
if(!GregTech_API.mIC2Classic){
GT_Values.RA.addDistillationTowerRecipe(new FluidStack(FluidRegistry.getFluid("ic2biomass"), 3000), new FluidStack[]{new FluidStack(FluidRegistry.getFluid("ic2biogas"), 8000), Materials.Water.getFluid(125L)}, ItemList.IC2_Fertilizer.get(1), 250, 480);