mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-02-17 02:22:23 +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:
@ -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;
|
||||
|
Reference in New Issue
Block a user