Skip to content

Commit

Permalink
Fixing client launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
gaithern committed Nov 9, 2023
1 parent c3fd34f commit be2ec71
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions worlds/khcom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,17 @@
from .Options import khcom_options
from .Regions import create_regions
from .Rules import set_rules
from worlds.LauncherComponents import Component, components, Type, launch_subprocess



def launch_client():
from .Client import launch
launch_subprocess(launch, name="KHCOM Client")


components.append(Component("KHCOM Client", "KHCOMClient", func=launch_client, component_type=Type.CLIENT))

class KHCOMWeb(WebWorld):
theme = "stone"
tutorials = [Tutorial(
Expand Down

0 comments on commit be2ec71

Please sign in to comment.