aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/util
diff options
context:
space:
mode:
authorSteelux <70096037+Steelux8@users.noreply.github.com>2022-09-14 20:09:18 +0100
committerGitHub <noreply@github.com>2022-09-14 21:09:18 +0200
commitb865d81fa79f31b2adcbff086671aedd4bb30d95 (patch)
tree6f61f3407bd9fff75c4ec612be23bb9915723030 /src/main/java/gregtech/api/util
parent007609482ffdca396f21a88d1e58c0cc93120839 (diff)
downloadGT5-Unofficial-b865d81fa79f31b2adcbff086671aedd4bb30d95.tar.gz
GT5-Unofficial-b865d81fa79f31b2adcbff086671aedd4bb30d95.tar.bz2
GT5-Unofficial-b865d81fa79f31b2adcbff086671aedd4bb30d95.zip
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 <dream-master@gmx.net> 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 <dream-master@gmx.net> Co-authored-by: Jakub <53441451+kuba6000@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/api/util')
-rw-r--r--src/main/java/gregtech/api/util/GasSpargingRecipe.java4
1 files changed, 2 insertions, 2 deletions
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<GasSpargingRecipe> {
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