BLADEBURNER: Reduce threshold of showing warning of low population (#2450)

This commit is contained in:
catloversg
2026-01-18 05:35:53 +07:00
committed by GitHub
parent 3d7d2d7734
commit be16b2a375

View File

@@ -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";
}