mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Core: define unreachables as set
This commit is contained in:
@@ -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 = []
|
||||||
|
Reference in New Issue
Block a user