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