@@ -474,9 +474,9 @@ public static class Builder {
474
474
private boolean isStructureFormed ;
475
475
476
476
// 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 ) ;
480
480
private boolean dirty ;
481
481
482
482
protected static Widget <?> keyMapper (IDrawable key ) {
@@ -691,7 +691,7 @@ public Builder addWorkingStatusLine() {
691
691
public Builder addWorkPausedLine (boolean checkState ) {
692
692
if (!isStructureFormed ) return this ;
693
693
if (!checkState || !isWorkingEnabled .getAsBoolean ()) {
694
- addKey (KeyUtil . colored ( TextFormatting . GOLD , pausedKey ) );
694
+ addKey (pausedKey );
695
695
}
696
696
return this ;
697
697
}
@@ -705,7 +705,7 @@ public Builder addWorkPausedLine(boolean checkState) {
705
705
public Builder addRunningPerfectlyLine (boolean checkState ) {
706
706
if (!isStructureFormed ) return this ;
707
707
if (!checkState || isActive .getAsBoolean ()) {
708
- addKey (KeyUtil . colored ( TextFormatting . GREEN , runningKey ) );
708
+ addKey (runningKey );
709
709
}
710
710
return this ;
711
711
}
@@ -719,7 +719,7 @@ public Builder addRunningPerfectlyLine(boolean checkState) {
719
719
public Builder addIdlingLine (boolean checkState ) {
720
720
if (!isStructureFormed ) return this ;
721
721
if (!checkState || (isWorkingEnabled .getAsBoolean () && !isActive .getAsBoolean ())) {
722
- addKey (KeyUtil . colored ( TextFormatting . GRAY , idlingKey ) );
722
+ addKey (idlingKey );
723
723
}
724
724
return this ;
725
725
}
0 commit comments