Don't make zig skip if er or fixed shop is off

This commit is contained in:
Scipio Wright
2024-07-12 15:18:22 -04:00
committed by GitHub
parent 66f65a1b06
commit b29d64c51b

View File

@@ -25,6 +25,9 @@ def create_er_regions(world: "TunicWorld") -> Dict[Portal, Portal]:
if world.options.entrance_rando:
for region_name, region_data in tunic_er_regions.items():
# if fewer shops is off, zig skip is not made
if region_name == "Zig Skip Exit" and not world.options.fixed_shop:
continue
regions[region_name] = Region(region_name, world.player, world.multiworld)
portal_pairs = pair_portals(world, regions)