From fb542a596cd737eda7aa5f163920188be8c35a3c Mon Sep 17 00:00:00 2001 From: omuretsu <84951833+Snarling@users.noreply.github.com> Date: Thu, 13 Jul 2023 08:12:16 -0400 Subject: [PATCH] Fix scan-analyze box drawing Non-matching up-and-right character made some fonts display scan-analyze oddly. --- src/Terminal/Terminal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Terminal/Terminal.ts b/src/Terminal/Terminal.ts index 82a4ac8d3..88f38d611 100644 --- a/src/Terminal/Terminal.ts +++ b/src/Terminal/Terminal.ts @@ -503,7 +503,7 @@ export class Terminal { const root = makeNode(Player.getCurrentServer().hostname, Player.getCurrentServer()); const printOutput = (node: Node, prefix = [" "], last = true) => { - const titlePrefix = prefix.slice(0, prefix.length - 1).join("") + (last ? "┕ " : "┣ "); + const titlePrefix = prefix.slice(0, prefix.length - 1).join("") + (last ? "┗ " : "┣ "); const infoPrefix = prefix.join("") + (node.children.length > 0 ? "┃ " : " "); if (Player.hasProgram(CompletedProgramName.autoLink)) { this.append(new Link(titlePrefix, node.hostname));