From 9fdeecd9965b188e712f7ef4024a709d9836a79b Mon Sep 17 00:00:00 2001 From: JaredWeakStrike <96694163+JaredWeakStrike@users.noreply.github.com> Date: Sun, 14 Sep 2025 20:08:57 -0400 Subject: [PATCH] KH2: Remove top level client script (#5446) * initial commit * remove kh2client.exe from setup --- KH2Client.py | 8 -------- worlds/kh2/__init__.py | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 KH2Client.py diff --git a/KH2Client.py b/KH2Client.py deleted file mode 100644 index 69e4adf8..00000000 --- a/KH2Client.py +++ /dev/null @@ -1,8 +0,0 @@ -import ModuleUpdate -import Utils -from worlds.kh2.Client import launch -ModuleUpdate.update() - -if __name__ == '__main__': - Utils.init_logging("KH2Client", exception_logger="Client") - launch() diff --git a/worlds/kh2/__init__.py b/worlds/kh2/__init__.py index 19c2aee6..3068e7bb 100644 --- a/worlds/kh2/__init__.py +++ b/worlds/kh2/__init__.py @@ -20,7 +20,7 @@ def launch_client(): launch_component(launch, name="KH2Client") -components.append(Component("KH2 Client", "KH2Client", func=launch_client, component_type=Type.CLIENT)) +components.append(Component("KH2 Client", func=launch_client, component_type=Type.CLIENT)) class KingdomHearts2Web(WebWorld):