From 88580b69b68c6426c8b03f2f26bbba7d4b6607fc Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 3 Mar 2025 00:49:02 -0600 Subject: [PATCH] [Hotfix] Remove one port check in world --- world/main.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/world/main.cpp b/world/main.cpp index 91af43edd..93bb3a9a4 100644 --- a/world/main.cpp +++ b/world/main.cpp @@ -194,11 +194,6 @@ int main(int argc, char **argv) return 1; } - if (IpUtil::IsPortInUse(Config->TelnetIP, Config->TelnetTCPPort)) { - LogError("Telnet port [{}] already in use", Config->TelnetTCPPort); - return 1; - } - std::unique_ptr console; if (Config->TelnetEnabled) { LogInfo("Console (TCP) listener started on [{}:{}]", Config->TelnetIP, Config->TelnetTCPPort);