Merge pull request #2468 from Ornedan/fix-small-town

Fix 'Small town' achievement condition to match description text
This commit is contained in:
hydroflame 2022-01-08 12:36:16 -05:00 committed by GitHub
commit 9855916b2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -223,7 +223,7 @@ const achievements: Achievement[] = [
for (const d of Player.corporation.divisions) { for (const d of Player.corporation.divisions) {
for (const o of Object.values(d.offices)) { for (const o of Object.values(d.offices)) {
if (o === 0) continue; if (o === 0) continue;
if (o.employees.length > 3000) return true; if (o.employees.length >= 3000) return true;
} }
} }
return false; return false;