From fa2c104a460bcb5b9b78a8fb7c3727231fd22ffd Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Tue, 30 Sep 2025 23:32:08 -0400 Subject: Fix vanilla-only oneway door in The Repetitive --- apworld/regions.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apworld') 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"): if connection.roof_access and not world.options.daedalus_roof_access: continue + if connection.vanilla_only and world.options.shuffle_doors: + continue + from_region = world.static_logic.get_room_region_name(connection.from_room) to_region = world.static_logic.get_room_region_name(connection.to_room) -- cgit 1.4.1