Make boost overlay to change to yellow at threshold

Fixes #6243
This commit is contained in:
brodan
2018-10-30 00:56:45 -04:00
committed by Tomas Slusny
parent 3f904d3804
commit a11946837b

View File

@@ -81,7 +81,7 @@ public class BoostIndicator extends InfoBox
return new Color(238, 51, 51);
}
return boosted - base < config.boostThreshold() ? Color.YELLOW : Color.GREEN;
return boosted - base <= config.boostThreshold() ? Color.YELLOW : Color.GREEN;
}
@Override