diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-30 23:32:08 -0400 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-30 23:32:08 -0400 |
| commit | fa2c104a460bcb5b9b78a8fb7c3727231fd22ffd (patch) | |
| tree | ba27f94a904fbfd21b05e36aeb978bf398934de2 /apworld/regions.py | |
| parent | 7a70828e9d0a4bf92491da1a88fac776de42d3b5 (diff) | |
| download | lingo2-archipelago-fa2c104a460bcb5b9b78a8fb7c3727231fd22ffd.tar.gz lingo2-archipelago-fa2c104a460bcb5b9b78a8fb7c3727231fd22ffd.tar.bz2 lingo2-archipelago-fa2c104a460bcb5b9b78a8fb7c3727231fd22ffd.zip | |
Fix vanilla-only oneway door in The Repetitive
Diffstat (limited to 'apworld/regions.py')
| -rw-r--r-- | apworld/regions.py | 3 |
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 | ||
