diff --git a/src/Terminal/Terminal.ts b/src/Terminal/Terminal.ts index d21c8e1c3..043767686 100644 --- a/src/Terminal/Terminal.ts +++ b/src/Terminal/Terminal.ts @@ -314,7 +314,9 @@ export class Terminal implements ITerminal { this.print("Organization name: " + (!isHacknet ? org : "player")); const hasAdminRights = (!isHacknet && currServ.hasAdminRights) || isHacknet; this.print("Root Access: " + (hasAdminRights ? "YES" : "NO")); - this.print("Can run scripts on this host: " + (hasAdminRights ? "YES" : "NO")); + const canRunScripts = hasAdminRights && currServ.maxRam > 0; + this.print("Can run scripts on this host: " + (canRunScripts ? "YES" : "NO")); + this.print("RAM: " + numeralWrapper.formatRAM(currServ.maxRam)); if (currServ instanceof Server) { this.print("Backdoor: " + (currServ.backdoorInstalled ? "YES" : "NO")); const hackingSkill = currServ.requiredHackingSkill;