Skip to content

Commit

Permalink
use slot name not alias
Browse files Browse the repository at this point in the history
  • Loading branch information
qwint committed Sep 9, 2024
1 parent a70320c commit b4e7f65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/tracker/TrackerClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def on_package(self, cmd: str, args: dict):
self.log_to_tab("Internal world was not able to be generated, check your yamls and relaunch", False)
return
self.game = args["slot_info"][str(args["slot"])][1]
slot_name = self.player_names.get(self.slot, None)
slot_name = args["slot_info"][str(args["slot"])][0]
if slot_name in self.launch_multiworld.world_name_lookup:
internal_id = self.launch_multiworld.world_name_lookup[slot_name]
if self.launch_multiworld.worlds[internal_id].game == self.game:
Expand Down

0 comments on commit b4e7f65

Please sign in to comment.