Core: define unreachables as set
This commit is contained in:
parent
e4d6da47a4
commit
aac8ca97ed
|
@ -1116,6 +1116,7 @@ class Item():
|
||||||
|
|
||||||
class Spoiler():
|
class Spoiler():
|
||||||
world: MultiWorld
|
world: MultiWorld
|
||||||
|
unreachables: Set[Location]
|
||||||
|
|
||||||
def __init__(self, world):
|
def __init__(self, world):
|
||||||
self.world = world
|
self.world = world
|
||||||
|
@ -1123,7 +1124,7 @@ class Spoiler():
|
||||||
self.entrances = OrderedDict()
|
self.entrances = OrderedDict()
|
||||||
self.medallions = {}
|
self.medallions = {}
|
||||||
self.playthrough = {}
|
self.playthrough = {}
|
||||||
self.unreachables = []
|
self.unreachables = set()
|
||||||
self.locations = {}
|
self.locations = {}
|
||||||
self.paths = {}
|
self.paths = {}
|
||||||
self.shops = []
|
self.shops = []
|
||||||
|
|
Loading…
Reference in New Issue