mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-21 06:45:49 -07:00
SMZ3: fix type
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
import copy
|
||||
import os
|
||||
@@ -85,7 +87,7 @@ class SMZ3World(World):
|
||||
|
||||
def __init__(self, world: MultiWorld, player: int):
|
||||
self.rom_name_available_event = threading.Event()
|
||||
self.locations: Dict[str, Location] = {}
|
||||
self.locations: Dict[str, SMZ3Location] = {}
|
||||
self.unreachable = []
|
||||
super().__init__(world, player)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user