diff --git a/src/Terminal/Terminal.ts b/src/Terminal/Terminal.ts index e46281a82..806e79fa7 100644 --- a/src/Terminal/Terminal.ts +++ b/src/Terminal/Terminal.ts @@ -315,6 +315,7 @@ export class Terminal implements ITerminal { this.print("Root Access: " + (hasAdminRights ? "YES" : "NO")); this.print("Can run scripts on this host: " + (hasAdminRights ? "YES" : "NO")); if (currServ instanceof Server) { + this.print("Backdoor: " + (currServ.backdoorInstalled ? "YES" : "NO")); const hackingSkill = currServ.requiredHackingSkill; this.print("Required hacking skill for hack() and backdoor: " + (!isHacknet ? hackingSkill : "N/A")); const security = currServ.hackDifficulty;