From fe0b6d598264783da53b998b23f197a17d223a2e Mon Sep 17 00:00:00 2001 From: Thomas B <79112289+waffleattack@users.noreply.github.com> Date: Fri, 25 Mar 2022 09:41:23 -0400 Subject: [PATCH] Clarified error message --- src/Terminal/commands/connect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Terminal/commands/connect.ts b/src/Terminal/commands/connect.ts index a419def70..a9a0e4444 100644 --- a/src/Terminal/commands/connect.ts +++ b/src/Terminal/commands/connect.ts @@ -36,7 +36,7 @@ export function connect( terminal.connectToServer(player, hostname); return; } - terminal.error(`Cannot directly connect to ${hostname}`); + terminal.error(`Cannot directly connect to ${hostname}. Make sure the server is backdoored or adjacent to your current Server`); } else { terminal.error("Host not found"); }