Core: define unreachables as set

This commit is contained in:
Fabian Dill 2022-02-07 00:26:44 +01:00
parent e4d6da47a4
commit aac8ca97ed
1 changed files with 2 additions and 1 deletions

View File

@ -1116,6 +1116,7 @@ class Item():
class Spoiler():
world: MultiWorld
unreachables: Set[Location]
def __init__(self, world):
self.world = world
@ -1123,7 +1124,7 @@ class Spoiler():
self.entrances = OrderedDict()
self.medallions = {}
self.playthrough = {}
self.unreachables = []
self.unreachables = set()
self.locations = {}
self.paths = {}
self.shops = []