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