From bed3397a3acb42104cbf085455954313178d8433 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 3 Sep 2025 21:51:34 -0400 Subject: Added option for Daedalus roof access logic --- apworld/regions.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apworld/regions.py') diff --git a/apworld/regions.py b/apworld/regions.py index fe2c99b..e30493c 100644 --- a/apworld/regions.py +++ b/apworld/regions.py @@ -41,6 +41,9 @@ def create_regions(world: "Lingo2World"): # TODO: The requirements of the opposite trigger also matter. for connection in world.static_logic.objects.connections: + if connection.roof_access and not world.options.daedalus_roof_access: + 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) connection_name = f"{from_region} -> {to_region}" -- cgit 1.4.1