diff options
| author | GDCloud <gdcloudstrike@gmail.com> | 2023-02-02 21:27:13 +0100 |
|---|---|---|
| committer | GDCloud <gdcloudstrike@gmail.com> | 2023-02-02 21:27:13 +0100 |
| commit | 0e683242448990f70d46b0742293a9e79996811b (patch) | |
| tree | c7a16a2b95882e1f9012096c0fc4afb721145858 /src/main/java/common/itemBlocks | |
| parent | 79b1212b00cb16aeaf14a548aced73b3337bed3d (diff) | |
| download | GT5-Unofficial-0e683242448990f70d46b0742293a9e79996811b.tar.gz GT5-Unofficial-0e683242448990f70d46b0742293a9e79996811b.tar.bz2 GT5-Unofficial-0e683242448990f70d46b0742293a9e79996811b.zip | |
Spotless
Diffstat (limited to 'src/main/java/common/itemBlocks')
| -rw-r--r-- | src/main/java/common/itemBlocks/IB_LapotronicEnergyUnit.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/common/itemBlocks/IB_LapotronicEnergyUnit.java b/src/main/java/common/itemBlocks/IB_LapotronicEnergyUnit.java index fecfce2bc9..8414b34006 100644 --- a/src/main/java/common/itemBlocks/IB_LapotronicEnergyUnit.java +++ b/src/main/java/common/itemBlocks/IB_LapotronicEnergyUnit.java @@ -49,7 +49,7 @@ public class IB_LapotronicEnergyUnit extends ItemBlock { // 1 Trillion EU/t private static BigInteger UEV_cap_eu_per_tick = - UEV_wireless_eu_cap.divide(BigInteger.valueOf(LSC_time_between_wireless_rebalance_in_ticks)); + UEV_wireless_eu_cap.divide(BigInteger.valueOf(LSC_time_between_wireless_rebalance_in_ticks)); public static long EV_cap_storage = 60_000_000L; public static long IV_cap_storage = 600_000_000L; @@ -96,10 +96,10 @@ public class IB_LapotronicEnergyUnit extends ItemBlock { break; case 8: lines.add("Capacity: " + EnumChatFormatting.RED + GT_Utility.formatNumbers(UEV_cap_storage) - + EnumChatFormatting.GRAY + "EU"); + + EnumChatFormatting.GRAY + "EU"); lines.add("Supports up to " + EnumChatFormatting.RED + GT_Utility.formatNumbers(UEV_cap_eu_per_tick) - + EnumChatFormatting.GRAY + "EU/t of wireless transfer per " + GT_Values.TIER_COLORS[10] - + GT_Values.VN[10] + EnumChatFormatting.GRAY + " capacitor."); + + EnumChatFormatting.GRAY + "EU/t of wireless transfer per " + GT_Values.TIER_COLORS[10] + + GT_Values.VN[10] + EnumChatFormatting.GRAY + " capacitor."); break; } } |
