Fixed issue with OWR Layout + Insanity ER

This commit is contained in:
codemann8
2022-02-07 15:32:58 -06:00
parent 85bdc93a5a
commit f07ea8126c

View File

@@ -1083,7 +1083,8 @@ def validate_layout(world, player):
flat_sectors = [[r for l in s for r in l] for s in world.owsectors[player]]
for sector in flat_sectors:
for region_name in sector:
if region_name not in explored_regions and region_name not in isolated_regions:
if region_name not in explored_regions and region_name not in isolated_regions \
and not (region_name == 'Pyramid Exit Ledge' and world.shuffle[player] == 'insanity'):
region = base_world.get_region(region_name, player)
unreachable_regions[region_name] = region