aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/common/tileentities
diff options
context:
space:
mode:
authorGDCloud <gdcloudstrike@gmail.com>2023-02-02 21:40:38 +0100
committerGDCloud <gdcloudstrike@gmail.com>2023-02-02 21:40:38 +0100
commit20ef1212161d01560ed9e8ab41fba1dd59a3d6d8 (patch)
tree6e273d866dc50e03968ff0627ca7bea7c971cdfc /src/main/java/common/tileentities
parent0e683242448990f70d46b0742293a9e79996811b (diff)
downloadGT5-Unofficial-20ef1212161d01560ed9e8ab41fba1dd59a3d6d8.tar.gz
GT5-Unofficial-20ef1212161d01560ed9e8ab41fba1dd59a3d6d8.tar.bz2
GT5-Unofficial-20ef1212161d01560ed9e8ab41fba1dd59a3d6d8.zip
Tooltips
Diffstat (limited to 'src/main/java/common/tileentities')
-rw-r--r--src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java
index 9cb106be49..ef4aab8db4 100644
--- a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java
+++ b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java
@@ -429,12 +429,12 @@ public class GTMTE_LapotronicSuperCapacitor
.addInfo("When enabled every " + EnumChatFormatting.BLUE
+ GT_Utility.formatNumbers(LSC_time_between_wireless_rebalance_in_ticks)
+ EnumChatFormatting.GRAY + " ticks the LSC will attempt to re-balance against your")
- .addInfo("wireless EU network. If there is less than " + GT_Values.TIER_COLORS[9]
+ .addInfo("wireless EU network. If there is less than " + EnumChatFormatting.RED
+ GT_Utility.formatNumbers(LSC_wireless_eu_cap) + EnumChatFormatting.GRAY + "("
- + GT_Values.TIER_COLORS[10] + GT_Values.VN[9] + EnumChatFormatting.GRAY + ")" + " or "
- + GT_Values.TIER_COLORS[10] + GT_Utility.formatNumbers(UEV_wireless_eu_cap)
+ + GT_Values.TIER_COLORS[9] + GT_Values.VN[9] + EnumChatFormatting.GRAY + ")" + " or "
+ + EnumChatFormatting.RED + GT_Utility.formatNumbers(UEV_wireless_eu_cap)
+ EnumChatFormatting.GRAY + "(" + GT_Values.TIER_COLORS[10] + GT_Values.VN[10]
- + EnumChatFormatting.GRAY + ")" + "EU in the LSC")
+ + EnumChatFormatting.GRAY + ")" + " EU in the LSC")
.addInfo("it will withdraw from the network and add to the LSC. If there is more it will add")
.addInfo("the EU to the network and remove it from the LSC.")
.addSeparator()
@@ -446,6 +446,7 @@ public class GTMTE_LapotronicSuperCapacitor
"Lapotronic Capacitor (" + GT_Values.TIER_COLORS[4] + GT_Values.VN[4] + EnumChatFormatting.GRAY
+ "-" + GT_Values.TIER_COLORS[8] + GT_Values.VN[8] + EnumChatFormatting.GRAY
+ "), Ultimate Capacitor (" + GT_Values.TIER_COLORS[9] + GT_Values.VN[9]
+ + EnumChatFormatting.GRAY + "-" + GT_Values.TIER_COLORS[9] + GT_Values.VN[9]
+ EnumChatFormatting.GRAY + ")",
"Center 3x(1-47)x3 above base (9-423 blocks)")
.addStructureInfo(
@@ -854,6 +855,8 @@ public class GTMTE_LapotronicSuperCapacitor
: EnumChatFormatting.RED + "disabled" + EnumChatFormatting.RESET));
ll.add(GT_Values.TIER_COLORS[9] + GT_Values.VN[9] + EnumChatFormatting.RESET + " Capacitors detected: "
+ getUHVCapacitorCount());
+ ll.add(GT_Values.TIER_COLORS[10] + GT_Values.VN[10] + EnumChatFormatting.RESET + " Capacitors detected: "
+ + getUEVCapacitorCount());
ll.add("Total wireless EU: " + EnumChatFormatting.RED
+ GT_Utility.formatNumbers(getUserEU(global_energy_user_uuid)));
ll.add("---------------------------------------------");