From a9f594d6b260a9f5b1b4ee0835933442069e0687 Mon Sep 17 00:00:00 2001 From: Ziktofel Date: Tue, 2 Sep 2025 23:50:29 +0200 Subject: [PATCH] SC2: Remove Starcraft2Client.py as Launcher.py got upgraded to work under Python 3.13 (#5406) --- Starcraft2Client.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 Starcraft2Client.py diff --git a/Starcraft2Client.py b/Starcraft2Client.py deleted file mode 100644 index 14e18320..00000000 --- a/Starcraft2Client.py +++ /dev/null @@ -1,13 +0,0 @@ -from __future__ import annotations - -import ModuleUpdate -ModuleUpdate.update() - -from worlds.sc2.client import launch -import Utils - -# This is deprecated, replaced with the client hooked from the Launcher -# Will be removed in a following release -if __name__ == "__main__": - Utils.init_logging("Starcraft2Client", exception_logger="Client") - launch()