Various fixes found from full compare of DR Unstable

This commit is contained in:
codemann8
2022-03-30 23:50:29 -05:00
parent 200ef7c897
commit fdf21b2d5b
6 changed files with 12 additions and 70 deletions

View File

@@ -1838,7 +1838,7 @@ def find_inaccessible_regions(world, player):
while len(queue) > 0:
next_region = queue.popleft()
visited_regions.add(next_region)
if next_region.name == 'Dark Sanctuary Hint': # special spawn point in cave
if world.mode[player] == 'inverted' and next_region.name == 'Dark Sanctuary Hint': # special spawn point in cave
for ent in next_region.entrances:
parent = ent.parent_region
if parent and parent.type is not RegionType.Dungeon and parent not in queue and parent not in visited_regions: