Skip to content

Commit

Permalink
I swear to god if i catch myself using ctx.player_names again..
Browse files Browse the repository at this point in the history
  • Loading branch information
qwint committed Dec 3, 2024
1 parent dccc681 commit 33160cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/tracker/TrackerClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ def move_slots(args: "Namespace", slot_name: str):
g_args.player_ids = {1}

# TODO confirm that this will never not be filled
g_args = move_slots(g_args, self.player_names.get(self.slot, None))
g_args = move_slots(g_args, self.slot_info[self.slot].name)

self.multiworld = self.TMain(g_args, seed)
assert len(self.cached_slot_data) == len(self.cached_multiworlds)
Expand Down Expand Up @@ -885,4 +885,4 @@ def launch(*args):


if __name__ == "__main__":
launch(sys.argv[1:])
launch(*sys.argv[1:])

0 comments on commit 33160cd

Please sign in to comment.