diff options
author | Matt <mtthw8198@gmail.com> | 2021-05-10 16:18:58 -0700 |
---|---|---|
committer | Matt <mtthw8198@gmail.com> | 2021-05-10 16:18:58 -0700 |
commit | a1a1f04fb64612a1ce1aea7c337bcf67bd9d1361 (patch) | |
tree | 829d9f39386721301eacea1930da6af2ca15d50b /src/main | |
parent | ebeee290237ba598504cb713c37e817a3a2087cf (diff) | |
download | GT5-Unofficial-a1a1f04fb64612a1ce1aea7c337bcf67bd9d1361.tar.gz GT5-Unofficial-a1a1f04fb64612a1ce1aea7c337bcf67bd9d1361.tar.bz2 GT5-Unofficial-a1a1f04fb64612a1ce1aea7c337bcf67bd9d1361.zip |
forgot to remove the "|| true" on the multiblock check
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java index 8780692488..a347465a12 100644 --- a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java +++ b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java @@ -321,7 +321,7 @@ public class GTMTE_LapotronicSuperCapacitor extends GT_MetaTileEntity_MultiBlock // Calculate how much energy to void each tick passiveDischargeAmount = new BigDecimal(tempCapacity).multiply(PASSIVE_DISCHARGE_FACTOR_PER_TICK).toBigInteger(); passiveDischargeAmount = recalculateLossWithMaintenance(super.getRepairStatus()); - return formationChecklist || true; + return formationChecklist; } public BigInteger calculateTempCapacity(BigInteger tempCapacity, int meta) { |