Skip to content

Commit

Permalink
change distillation EUt to reflect config
Browse files Browse the repository at this point in the history
  • Loading branch information
TechLord22 committed Aug 14, 2021
1 parent 9e10cf2 commit 6f82857
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import gregtech.api.recipes.RecipeMaps;
import gregtech.api.util.GTUtility;
import gregtech.api.util.ValidationResult;
import gregtech.common.ConfigHolder;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidStack;

Expand Down Expand Up @@ -41,7 +42,7 @@ public void buildAndRegister() {

int ratio = getRatioForDistillery(this.fluidInputs.get(0), this.fluidOutputs.get(i), this.outputs.size() > 0 ? this.outputs.get(0) : null);

int recipeDuration = this.EUt > 16 ? (int) (this.duration * 2.8f) : this.duration * 2;
int recipeDuration = (int) (this.duration * ConfigHolder.U.overclockDivisor);

boolean shouldDivide = ratio != 1;

Expand Down

0 comments on commit 6f82857

Please sign in to comment.