From caba8d42bd70a7cc30b6d7846428072da73d09e1 Mon Sep 17 00:00:00 2001 From: Carl Date: Sat, 30 May 2026 16:01:54 +0200 Subject: [PATCH] nvm i'm stupid --- servermanager.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/servermanager.py b/servermanager.py index 505a44c..283cb6e 100644 --- a/servermanager.py +++ b/servermanager.py @@ -253,7 +253,3 @@ def is_port_in_use(port: int) -> bool: with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: return s.connect_ex(("localhost", port)) == 0 - - -def does_game_folder_exist(folder: str) -> bool: - return not (os.path.isdir(SERVER_PATH + "/" + folder))