From b865d81fa79f31b2adcbff086671aedd4bb30d95 Mon Sep 17 00:00:00 2001 From: Steelux <70096037+Steelux8@users.noreply.github.com> Date: Wed, 14 Sep 2022 20:09:18 +0100 Subject: Bugfixes and Speed Increases for the LFTR Chain (#345) * Bugfixes, Processing Speed and Gas Output Changes - Changed a few restrictions to allow this chain to be doable in IV, as intended; - Changed the EU/t of the 3 fuels to match the usage of 4 buffered dynamos, and reduced the burning time to keep the total energy per L the same; - Lowered the recipe time of some recipes done in multiblocks; - Other tooltip and bug fixes. * Spotless apply for branch LFTR_Work for #345 (#346) * update BS+Spotless * Fix healing device never getting discharged (#343) * spotlessApply Co-authored-by: Martin Robertz Co-authored-by: Jakub <53441451+kuba6000@users.noreply.github.com> Co-authored-by: Steelux <70096037+Steelux8@users.noreply.github.com> Co-authored-by: GitHub GTNH Actions <> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Martin Robertz Co-authored-by: Jakub <53441451+kuba6000@users.noreply.github.com> --- src/main/java/gregtech/api/util/GasSpargingRecipe.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/gregtech/api') diff --git a/src/main/java/gregtech/api/util/GasSpargingRecipe.java b/src/main/java/gregtech/api/util/GasSpargingRecipe.java index 531ea600b6..578ec687a0 100644 --- a/src/main/java/gregtech/api/util/GasSpargingRecipe.java +++ b/src/main/java/gregtech/api/util/GasSpargingRecipe.java @@ -31,8 +31,8 @@ public class GasSpargingRecipe implements Comparable { aOutputs = ArrayUtils.insertElementAtIndex(aOutputs, 1, aSpargedFuel); mFluidOutputs = aOutputs; mMaxOutputQuantity = aMaxOutputQuantity; - mDuration = 20 * 60 * 5; - mEUt = MaterialUtils.getVoltageForTier(3); + mDuration = 500 * 10; // Actual recipe time is 10x less than this number, not sure why + mEUt = MaterialUtils.getVoltageForTier(5); } @Override -- cgit