From f628a1855150a2863e8ced45628b68b749944d1d Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Thu, 16 Sep 2021 03:17:03 -0400 Subject: [PATCH] scan-analyze still doesnt work but at least its not full of html --- src/Terminal/Terminal.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Terminal/Terminal.ts b/src/Terminal/Terminal.ts index 285fa2c6b..fdc1eaab9 100644 --- a/src/Terminal/Terminal.ts +++ b/src/Terminal/Terminal.ts @@ -427,9 +427,9 @@ export class Terminal implements ITerminal { } // Don't print current server const titleDashes = Array((d - 1) * 4 + 1).join("-"); if (player.hasProgram(Programs.AutoLink.name)) { - this.print("" + titleDashes + "> " + s.hostname + "", false); + this.print(s.hostname); } else { - this.print("" + titleDashes + ">" + s.hostname + ""); + this.print(s.hostname); } const dashes = titleDashes + "--";