about summary refs log tree commit diff stats
path: root/apworld
diff options
context:
space:
mode:
Diffstat (limited to 'apworld')
-rw-r--r--apworld/regions.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/apworld/regions.py b/apworld/regions.py index 64302f6..3735858 100644 --- a/apworld/regions.py +++ b/apworld/regions.py
@@ -75,6 +75,9 @@ def create_regions(world: "Lingo2World"):
75 if connection.roof_access and not world.options.daedalus_roof_access: 75 if connection.roof_access and not world.options.daedalus_roof_access:
76 continue 76 continue
77 77
78 if connection.vanilla_only and world.options.shuffle_doors:
79 continue
80
78 from_region = world.static_logic.get_room_region_name(connection.from_room) 81 from_region = world.static_logic.get_room_region_name(connection.from_room)
79 to_region = world.static_logic.get_room_region_name(connection.to_room) 82 to_region = world.static_logic.get_room_region_name(connection.to_room)
80 83