Fix 'Small town' achievement condition to match description text

This commit is contained in:
Heikki Aitakangas 2022-01-08 16:37:35 +02:00
parent d2193e017d
commit b1b9d0862b

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