diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2022-03-04 18:50:27 +0800 |
---|---|---|
committer | Glease <4586901+Glease@users.noreply.github.com> | 2022-03-04 18:50:27 +0800 |
commit | 0ebcfd8b5ca88938fcc33213db13ab5aa721fb0e (patch) | |
tree | e93998d4bc7c77db661657dba3f58dfb76e66990 /src/main | |
parent | 3532f9259ec2e445cb8d4ca579a7222bace09da5 (diff) | |
download | GT5-Unofficial-0ebcfd8b5ca88938fcc33213db13ab5aa721fb0e.tar.gz GT5-Unofficial-0ebcfd8b5ca88938fcc33213db13ab5aa721fb0e.tar.bz2 GT5-Unofficial-0ebcfd8b5ca88938fcc33213db13ab5aa721fb0e.zip |
fix lsc uhv capacitor energy cap
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java index e6f15ad145..5f377dbcaa 100644 --- a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java +++ b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java @@ -42,16 +42,16 @@ public class GTMTE_LapotronicSuperCapacitor extends GT_MetaTileEntity_EnhancedMu NotTop } - private enum Capacitor { - IV(2, BigInteger.valueOf(400000000L),BigInteger.valueOf(400000000L)), - LuV(3, BigInteger.valueOf(4000000000L),BigInteger.valueOf(4000000000L)), - ZPM(4, BigInteger.valueOf(40000000000L),BigInteger.valueOf(40000000000L)), - UV(5, BigInteger.valueOf(400000000000L),BigInteger.valueOf(400000000000L)), - UHV(6, BigInteger.valueOf(100000000000L),BigInteger.valueOf(100000000000L)), - None(0, BigInteger.ZERO,MAX_LONG), - EV(1, BigInteger.valueOf(40000000L),BigInteger.valueOf(40000000L)); - - private final int minimalGlassTier; + private enum Capacitor { + IV(2, BigInteger.valueOf(400000000L), BigInteger.valueOf(400000000L)), + LuV(3, BigInteger.valueOf(4000000000L), BigInteger.valueOf(4000000000L)), + ZPM(4, BigInteger.valueOf(40000000000L), BigInteger.valueOf(40000000000L)), + UV(5, BigInteger.valueOf(400000000000L), BigInteger.valueOf(400000000000L)), + UHV(6, BigInteger.valueOf(100000000000L), MAX_LONG), + None(0, BigInteger.ZERO, BigInteger.ZERO), + EV(1, BigInteger.valueOf(40000000L), BigInteger.valueOf(40000000L)); + + private final int minimalGlassTier; private final BigInteger passiveDischargeValue; private final BigInteger providedCapacity; static final Capacitor[] VALUES = values(); |