@@ -474,9 +474,9 @@ public static class Builder {
474474 private boolean isStructureFormed ;
475475
476476 // Keys for the three-state working system, can be set custom by multiblocks.
477- private IKey idlingKey = IKey .lang ("gregtech.multiblock.idling" );
478- private IKey pausedKey = IKey .lang ("gregtech.multiblock.work_paused" );
479- private IKey runningKey = IKey .lang ("gregtech.multiblock.running" );
477+ private IKey idlingKey = IKey .lang ("gregtech.multiblock.idling" ). format ( TextFormatting . GRAY ) ;
478+ private IKey pausedKey = IKey .lang ("gregtech.multiblock.work_paused" ). format ( TextFormatting . GOLD ) ;
479+ private IKey runningKey = IKey .lang ("gregtech.multiblock.running" ). format ( TextFormatting . GREEN ) ;
480480 private boolean dirty ;
481481
482482 protected static Widget <?> keyMapper (IDrawable key ) {
@@ -691,7 +691,7 @@ public Builder addWorkingStatusLine() {
691691 public Builder addWorkPausedLine (boolean checkState ) {
692692 if (!isStructureFormed ) return this ;
693693 if (!checkState || !isWorkingEnabled .getAsBoolean ()) {
694- addKey (KeyUtil . colored ( TextFormatting . GOLD , pausedKey ) );
694+ addKey (pausedKey );
695695 }
696696 return this ;
697697 }
@@ -705,7 +705,7 @@ public Builder addWorkPausedLine(boolean checkState) {
705705 public Builder addRunningPerfectlyLine (boolean checkState ) {
706706 if (!isStructureFormed ) return this ;
707707 if (!checkState || isActive .getAsBoolean ()) {
708- addKey (KeyUtil . colored ( TextFormatting . GREEN , runningKey ) );
708+ addKey (runningKey );
709709 }
710710 return this ;
711711 }
@@ -719,7 +719,7 @@ public Builder addRunningPerfectlyLine(boolean checkState) {
719719 public Builder addIdlingLine (boolean checkState ) {
720720 if (!isStructureFormed ) return this ;
721721 if (!checkState || (isWorkingEnabled .getAsBoolean () && !isActive .getAsBoolean ())) {
722- addKey (KeyUtil . colored ( TextFormatting . GRAY , idlingKey ) );
722+ addKey (idlingKey );
723723 }
724724 return this ;
725725 }
0 commit comments