From be16b2a3758cd94086209b92f097631ef11a47ed Mon Sep 17 00:00:00 2001 From: catloversg <152669316+catloversg@users.noreply.github.com> Date: Sun, 18 Jan 2026 05:35:53 +0700 Subject: [PATCH] BLADEBURNER: Reduce threshold of showing warning of low population (#2450) --- src/Bladeburner/ui/Stats.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bladeburner/ui/Stats.tsx b/src/Bladeburner/ui/Stats.tsx index 48e57f5f2..5f6c6dbdc 100644 --- a/src/Bladeburner/ui/Stats.tsx +++ b/src/Bladeburner/ui/Stats.tsx @@ -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"; }