Merge pull request #8230 from Nightfirecat/fix-boost-indicator-threshold-overlay-color

boosts plugin: Fix overlay below-threshold color
This commit is contained in:
Adam
2019-03-17 13:30:27 -04:00
committed by GitHub

View File

@@ -137,7 +137,7 @@ class BoostsOverlay extends Overlay
return new Color(238, 51, 51);
}
return boost < config.boostThreshold() ? Color.YELLOW : Color.GREEN;
return boost <= config.boostThreshold() ? Color.YELLOW : Color.GREEN;
}
}