diff --git a/multiworld/watchdog.py b/multiworld/watchdog.py index b01d5c5..00d69eb 100644 --- a/multiworld/watchdog.py +++ b/multiworld/watchdog.py @@ -116,7 +116,11 @@ def _monitor_thread(self): if not empty: logger.debug(f"name: {world}, rank: {rank}, world size: {size}") - self._myworlds[world] = (store, rank, [WorldStatus()] * size) + self._myworlds[world] = ( + store, + rank, + [WorldStatus() for i in range(size)], + ) # update tick for all the worlds that I belongs to broken_worlds = set()