From e6a86db58d203586edc542ca91138e2eb7220974 Mon Sep 17 00:00:00 2001 From: GitHub GTNH Actions <> Date: Fri, 23 Sep 2022 17:22:28 +0000 Subject: spotlessApply --- .../machines/multi/production/turbines/GT_MTE_LargeTurbine_Plasma.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/main/java/gtPlusPlus') 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 { -- cgit