Merge pull request #1706 from danielyxie/dev

fix bn5 not giving formulas.exe
This commit is contained in:
hydroflame 2021-11-12 15:48:47 -05:00 committed by GitHub
commit 018dc7c579
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -64,7 +64,7 @@ export function prestigeAugmentation(): void {
homeComp.programs.push(Programs.AutoLink.name); homeComp.programs.push(Programs.AutoLink.name);
} }
if (Player.sourceFileLvl(5) > 0) { if (Player.sourceFileLvl(5) > 0 || Player.bitNodeN === 5) {
homeComp.programs.push(Programs.Formulas.name); homeComp.programs.push(Programs.Formulas.name);
} }