mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 06:18:42 +02:00
BLADEBURNER: Reduce threshold of showing warning of low population (#2450)
This commit is contained in:
@@ -44,7 +44,7 @@ export function Stats({ bladeburner }: StatsProps): React.ReactElement {
|
||||
if (bladeburner.getCurrentCity().pop <= 1e8) {
|
||||
populationTextColor = Settings.theme.error;
|
||||
populationWarning = "extremely low";
|
||||
} else if (bladeburner.getCurrentCity().pop < 9e8) {
|
||||
} else if (bladeburner.getCurrentCity().pop < 8e8) {
|
||||
populationTextColor = Settings.theme.warning;
|
||||
populationWarning = "low";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user