From b1b9d0862b157f384d419bb1fe156454df5206b0 Mon Sep 17 00:00:00 2001 From: Heikki Aitakangas Date: Sat, 8 Jan 2022 16:37:35 +0200 Subject: [PATCH] Fix 'Small town' achievement condition to match description text --- src/Electron.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Electron.tsx b/src/Electron.tsx index 4f7221e4f..bab739b4e 100644 --- a/src/Electron.tsx +++ b/src/Electron.tsx @@ -223,7 +223,7 @@ const achievements: Achievement[] = [ for (const d of Player.corporation.divisions) { for (const o of Object.values(d.offices)) { if (o === 0) continue; - if (o.employees.length > 3000) return true; + if (o.employees.length >= 3000) return true; } } return false;