Merge pull request #8230 from Nightfirecat/fix-boost-indicator-threshold-overlay-color
boosts plugin: Fix overlay below-threshold color
This commit is contained in:
@@ -137,7 +137,7 @@ class BoostsOverlay extends Overlay
|
|||||||
return new Color(238, 51, 51);
|
return new Color(238, 51, 51);
|
||||||
}
|
}
|
||||||
|
|
||||||
return boost < config.boostThreshold() ? Color.YELLOW : Color.GREEN;
|
return boost <= config.boostThreshold() ? Color.YELLOW : Color.GREEN;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user