aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/common/itemBlocks
diff options
context:
space:
mode:
authorGTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com>2022-08-13 17:26:21 +0100
committerGTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com>2022-08-13 17:26:21 +0100
commit7eb99b2c6627915fdc7ea4bc9e1c22d3959d13cc (patch)
tree5b342e63b6d82bd7e6bf86f1de71878530568783 /src/main/java/common/itemBlocks
parentc8bd7333663043bf415e6b6df20f758adeb3af64 (diff)
downloadGT5-Unofficial-7eb99b2c6627915fdc7ea4bc9e1c22d3959d13cc.tar.gz
GT5-Unofficial-7eb99b2c6627915fdc7ea4bc9e1c22d3959d13cc.tar.bz2
GT5-Unofficial-7eb99b2c6627915fdc7ea4bc9e1c22d3959d13cc.zip
Fix wireless interface update.
Diffstat (limited to 'src/main/java/common/itemBlocks')
-rw-r--r--src/main/java/common/itemBlocks/IB_LapotronicEnergyUnit.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/main/java/common/itemBlocks/IB_LapotronicEnergyUnit.java b/src/main/java/common/itemBlocks/IB_LapotronicEnergyUnit.java
index 25695d91e6..488d2cdcd9 100644
--- a/src/main/java/common/itemBlocks/IB_LapotronicEnergyUnit.java
+++ b/src/main/java/common/itemBlocks/IB_LapotronicEnergyUnit.java
@@ -35,12 +35,13 @@ public class IB_LapotronicEnergyUnit extends ItemBlock {
return super.getUnlocalizedName() + "." + stack.getItemDamage();
}
- // 5 minutes, 5 mins * 60s * 20 ticks.
- public static long LSC_time_between_wireless_rebalance_in_ticks = 5L*60L*20L;
+ // 5 Minutes, 5 mins * 60s * 20 ticks.
+ public static long LSC_time_between_wireless_rebalance_in_ticks = 5L * 60L * 20L;
- // 100 Trillion EU.
- public static BigInteger LSC_wireless_eu_cap = BigInteger.valueOf(pow(10L,14));
+ // 60 Trillion EU.
+ public static BigInteger LSC_wireless_eu_cap = BigInteger.valueOf(60 * pow(10,12));
+ // 10 Billion EU/t
private static BigInteger UHV_cap_eu_per_tick = LSC_wireless_eu_cap.divide(BigInteger.valueOf(LSC_time_between_wireless_rebalance_in_ticks));
public static long EV_cap_storage = 60_000_000L;