From b29d64c51b00aa84b87a7751adf76c38129223b3 Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Fri, 12 Jul 2024 15:18:22 -0400 Subject: [PATCH] Don't make zig skip if er or fixed shop is off --- worlds/tunic/er_scripts.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/worlds/tunic/er_scripts.py b/worlds/tunic/er_scripts.py index b59dcd9a41..0d013bf753 100644 --- a/worlds/tunic/er_scripts.py +++ b/worlds/tunic/er_scripts.py @@ -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)