From 1dc3ad974ab23977756e375d1023c4d10c8d0de7 Mon Sep 17 00:00:00 2001 From: BlueWeabo <76872108+BlueWeabo@users.noreply.github.com> Date: Thu, 6 Oct 2022 21:15:32 +0300 Subject: Less max PA parallels (#1438) --- .../multi/GT_MetaTileEntity_ProcessingArray.java | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) (limited to 'src/main/java/gregtech/common/tileentities') 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 tFluidList = getStoredFluids(); -- cgit