diff options
| author | Maxim <maxim235@gmx.de> | 2022-09-25 13:55:37 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-25 13:55:37 +0200 | 
| commit | 7c1b717a8f90397e90f0c9e70790aaed9f0e65bb (patch) | |
| tree | b486062637ac90fe6000b1f3fd72e942fd42c07f /src/main | |
| parent | 38cda9c58ff3762479dbf47fc66351b8ad92f4d0 (diff) | |
| download | GT5-Unofficial-7c1b717a8f90397e90f0c9e70790aaed9f0e65bb.tar.gz GT5-Unofficial-7c1b717a8f90397e90f0c9e70790aaed9f0e65bb.tar.bz2 GT5-Unofficial-7c1b717a8f90397e90f0c9e70790aaed9f0e65bb.zip  | |
Decreased consumption by 20 since it uses the sec value per tick (#372)
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/turbines/GT_MTE_LargeTurbine_Plasma.java | 4 | 
1 files changed, 2 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 aad8b0c368..06c7a32a0e 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 @@ -183,7 +183,7 @@ public class GT_MTE_LargeTurbine_Plasma extends GregtechMetaTileEntity_LargerTur      @Override      int fluidIntoPower(ArrayList<FluidStack> aFluids, long aOptFlow, int aBaseEff, float[] flowMultipliers) {          if (aFluids.size() >= 1) { -            aOptFlow *= 800; // CHANGED THINGS HERE, check recipe runs once per 20 ticks +            aOptFlow *= 40; // CHANGED THINGS HERE, check recipe runs once per 20 ticks              int tEU = 0;              int actualOptimalFlow = 0; @@ -225,7 +225,7 @@ public class GT_MTE_LargeTurbine_Plasma extends GregtechMetaTileEntity_LargerTur                  }              }              if (totalFlow <= 0) return 0; -            tEU = GT_Utility.safeInt((long) ((fuelValue / 20D) * (double) totalFlow)); +            tEU = GT_Utility.safeInt((long) ((fuelValue) * (double) totalFlow));              if (totalFlow == actualOptimalFlow) {                  tEU = GT_Utility.safeInt((long) (aBaseEff / 10000D * tEU));  | 
