KH2: Remove top level client script (#5446)

* initial commit

* remove kh2client.exe from setup
This commit is contained in:
JaredWeakStrike
2025-09-14 20:08:57 -04:00
committed by GitHub
parent 174d89c81f
commit 9fdeecd996
2 changed files with 1 additions and 9 deletions

View File

@@ -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()

View File

@@ -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):