From b9fea1be881fa1e21d3385f8c378dca636f885bf Mon Sep 17 00:00:00 2001 From: Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> Date: Sun, 31 Jul 2022 07:23:05 +0100 Subject: Better Endgame Wireless EU (#1144) * Basis of changes * Adjust voltage tiers to remove OpV * Better textures, move IDs around etc. * Format cleanup * Log level change * Dynamos * More stuff * More OpV purging. * Fixes * Remove wire support. * Textures * IDs * Update hatch/dynamo * New number formatter * Add default method * Add save method on world close * Cleanup old comments/debug * Author * Author * Author * Author * Restructuring of code * Unit tests * More unit tests + cleanup * Fix ID shift + add spares Co-authored-by: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> --- src/main/java/gregtech/client/GT_TooltipEventHandler.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/gregtech/client') diff --git a/src/main/java/gregtech/client/GT_TooltipEventHandler.java b/src/main/java/gregtech/client/GT_TooltipEventHandler.java index 30ef1a396d..eccdd7cbc8 100644 --- a/src/main/java/gregtech/client/GT_TooltipEventHandler.java +++ b/src/main/java/gregtech/client/GT_TooltipEventHandler.java @@ -22,13 +22,13 @@ public class GT_TooltipEventHandler { /* * What you can do: - * - add simple, unformated text - * - add formatted text + * - Add simple, unformatted text. + * - Add formatted text. * Note: you can chain formatting codes but the color must be used first: * e.g. BLACK + ITALIC will create black, italic text but ITALIC + BLACK will only create black text. * - add animated text * - chain multiple static and/or animated text together using chain() - * (Although chaining only static text together is pointless, text() is already able to to that) + * (Although chaining only static text together is pointless, text() is already able to do that) * - add multiple lines by using NEW_LINE (either as String or as Supplier) * Note: formatting only applies for one line * Note: having a NEW_LINE in animated text results in "skipping" of one formatting since NEW_LINE @@ -184,4 +184,4 @@ public class GT_TooltipEventHandler { }; } -} \ No newline at end of file +} -- cgit