diff --git a/worlds/tracker/TrackerClient.py b/worlds/tracker/TrackerClient.py index 621c6959a5e8..942bc3010fde 100644 --- a/worlds/tracker/TrackerClient.py +++ b/worlds/tracker/TrackerClient.py @@ -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) @@ -885,4 +885,4 @@ def launch(*args): if __name__ == "__main__": - launch(sys.argv[1:]) + launch(*sys.argv[1:])