diff options
author | BlueWeabo <76872108+BlueWeabo@users.noreply.github.com> | 2022-10-06 21:15:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 20:15:32 +0200 |
commit | 1dc3ad974ab23977756e375d1023c4d10c8d0de7 (patch) | |
tree | bfb3f2c759e96804d2cda01b137adb44b8d39b62 /src/main | |
parent | e59afdfcced535ec394cdd80d3023801124eeceb (diff) | |
download | GT5-Unofficial-1dc3ad974ab23977756e375d1023c4d10c8d0de7.tar.gz GT5-Unofficial-1dc3ad974ab23977756e375d1023c4d10c8d0de7.tar.bz2 GT5-Unofficial-1dc3ad974ab23977756e375d1023c4d10c8d0de7.zip |
Less max PA parallels (#1438)
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_ProcessingArray.java | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_ProcessingArray.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_ProcessingArray.java index 0e68b0f312..6fe0f57709 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_ProcessingArray.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_ProcessingArray.java @@ -211,26 +211,8 @@ public class GT_MetaTileEntity_ProcessingArray if (aMachine != null) tTier = ((GT_MetaTileEntity_TieredMachineBlock) aMachine).mTier; mMult = 0; if (downtierUEV && tTier > 9) { - switch (tTier) { - default: - tTier = 0; - break; - case 10: - tTier = 9; - mMult = 2; // Parallels are 4x as strong - break; - case 11: - tTier = 9; - mMult = 4; // Parallels are 16x as strong - break; - case 12: - case 13: - case 14: - case 15: - tTier = 9; - mMult = 6; // Parallels are 64x as strong - break; - } + tTier--; // Lowers down the tier by 1 to allow for bigger parallel + mMult = 2; // Multiplies Parallels by 4x, keeping the energy cost } } ArrayList<FluidStack> tFluidList = getStoredFluids(); |