TLOZ: world: multiworld (#3752)

This commit is contained in:
Exempt-Medic 2024-08-09 16:38:42 -04:00 committed by GitHub
parent c66a8605da
commit a6f376b02e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -110,8 +110,8 @@ class TLoZWorld(World):
if v is not None: if v is not None:
location_name_to_id[k] = v + base_id location_name_to_id[k] = v + base_id
def __init__(self, world: MultiWorld, player: int): def __init__(self, multiworld: MultiWorld, player: int):
super().__init__(world, player) super().__init__(multiworld, player)
self.generator_in_use = threading.Event() self.generator_in_use = threading.Event()
self.rom_name_available_event = threading.Event() self.rom_name_available_event = threading.Event()
self.levels = None self.levels = None