Skip to content

Commit be16b2a

Browse files
authored
BLADEBURNER: Reduce threshold of showing warning of low population (#2450)
1 parent 3d7d2d7 commit be16b2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bladeburner/ui/Stats.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function Stats({ bladeburner }: StatsProps): React.ReactElement {
4444
if (bladeburner.getCurrentCity().pop <= 1e8) {
4545
populationTextColor = Settings.theme.error;
4646
populationWarning = "extremely low";
47-
} else if (bladeburner.getCurrentCity().pop < 9e8) {
47+
} else if (bladeburner.getCurrentCity().pop < 8e8) {
4848
populationTextColor = Settings.theme.warning;
4949
populationWarning = "low";
5050
}

0 commit comments

Comments
 (0)