From e6c8d35894d561e6aea1cfb7450f00a70c9e01d8 Mon Sep 17 00:00:00 2001 From: Alexdoru <57050655+Alexdoru@users.noreply.github.com> Date: Mon, 14 Oct 2024 14:46:59 +0200 Subject: Multi ToolTip unification (#3343) Co-authored-by: chochem <40274384+chochem@users.noreply.github.com> Co-authored-by: GDCloud Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Martin Robertz --- .../kekztech/common/tileentities/MTELapotronicSuperCapacitor.java | 3 +-- src/main/java/kekztech/common/tileentities/MTESOFuelCellMK1.java | 3 +-- src/main/java/kekztech/common/tileentities/MTESOFuelCellMK2.java | 3 +-- src/main/java/kekztech/common/tileentities/MTETankTFFT.java | 5 ++--- 4 files changed, 5 insertions(+), 9 deletions(-) (limited to 'src/main/java/kekztech') diff --git a/src/main/java/kekztech/common/tileentities/MTELapotronicSuperCapacitor.java b/src/main/java/kekztech/common/tileentities/MTELapotronicSuperCapacitor.java index eed5b32820..2485dc635c 100644 --- a/src/main/java/kekztech/common/tileentities/MTELapotronicSuperCapacitor.java +++ b/src/main/java/kekztech/common/tileentities/MTELapotronicSuperCapacitor.java @@ -453,7 +453,6 @@ public class MTELapotronicSuperCapacitor extends MTEEnhancedMultiBlockBase implemen .addInfo("Note on hatch locking:") .addInfo("Use an Integrated Circuit in the GUI slot to limit which fluid is output.") .addInfo("The index of a stored fluid can be obtained through the Tricorder.") - .addSeparator() .beginVariableStructureBlock(5, 5, 5, 15, 5, 5, false) .addController("Top Center") .addCasingInfoMin("T.F.F.T Casing", MIN_CASING_AMOUNT, false) @@ -354,7 +353,7 @@ public class MTETankTFFT extends MTEEnhancedMultiBlockBase implemen .addStructureInfo("Use MIOH with conduits or fluid storage busses to see all fluids at once.") .addSubChannelUsage("field", "Maximum Field Tier") .addSubChannelUsage("height", "Height of structure") - .toolTipFinisher("KekzTech"); + .toolTipFinisher(); return tt; } @@ -544,7 +543,7 @@ public class MTETankTFFT extends MTEEnhancedMultiBlockBase implemen "Maintenance Status: " + ((getRepairStatus() == getIdealStatus()) ? EnumChatFormatting.GREEN + "Working perfectly" + EnumChatFormatting.RESET : EnumChatFormatting.RED + "Has Problems" + EnumChatFormatting.RESET)); - ll.add("---------------------------------------------"); + ll.add(EnumChatFormatting.STRIKETHROUGH + "---------------------------------------------"); return ll.toArray(new String[0]); } -- cgit