Merge pull request #2369 from SagePtr/patch-1

Fix some achievements not triggered if hacked with backdoor command
This commit is contained in:
hydroflame 2022-01-06 11:25:27 -05:00 committed by GitHub
commit b05f65fc0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -285,6 +285,7 @@ export class Terminal implements ITerminal {
return;
}
if (!(server instanceof Server)) throw new Error("server should be normal server");
server.backdoorInstalled = true;
if (SpecialServers.WorldDaemon === server.hostname) {
if (player.bitNodeN == null) {
player.bitNodeN = 1;
@ -292,7 +293,6 @@ export class Terminal implements ITerminal {
router.toBitVerse(false, false);
return;
}
server.backdoorInstalled = true;
this.print("Backdoor successful!");
}
}