diff options
author | GitHub GTNH Actions <> | 2022-09-23 17:22:28 +0000 |
---|---|---|
committer | GitHub GTNH Actions <> | 2022-09-23 17:22:28 +0000 |
commit | e6a86db58d203586edc542ca91138e2eb7220974 (patch) | |
tree | 4ae0f96fb91f465f668f6b16ec60f88830c14541 | |
parent | 864da71dc402ad4902342772ca8138697ffda1a7 (diff) | |
download | GT5-Unofficial-e6a86db58d203586edc542ca91138e2eb7220974.tar.gz GT5-Unofficial-e6a86db58d203586edc542ca91138e2eb7220974.tar.bz2 GT5-Unofficial-e6a86db58d203586edc542ca91138e2eb7220974.zip |
spotlessApply
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_Plasma.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_Plasma.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_Plasma.java index b665844593..aad8b0c368 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_Plasma.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_Plasma.java @@ -146,7 +146,6 @@ public class GT_MTE_LargeTurbine_Plasma extends GregtechMetaTileEntity_LargerTur } } - // How much the turbine should be producing with this flow int newPower = fluidIntoPower(tFluids, optFlow, baseEff, flowMultipliers); int difference = newPower - this.mEUt; // difference between current output and new output @@ -228,7 +227,6 @@ public class GT_MTE_LargeTurbine_Plasma extends GregtechMetaTileEntity_LargerTur if (totalFlow <= 0) return 0; tEU = GT_Utility.safeInt((long) ((fuelValue / 20D) * (double) totalFlow)); - if (totalFlow == actualOptimalFlow) { tEU = GT_Utility.safeInt((long) (aBaseEff / 10000D * tEU)); } else { |