mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-26 09:33:49 +01:00
Fix 'Small town' achievement condition to match description text
This commit is contained in:
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;
|
||||
|
Loading…
Reference in New Issue
Block a user