diff options
Diffstat (limited to 'regions.py')
-rw-r--r-- | regions.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/regions.py b/regions.py index 4b357db..9834f04 100644 --- a/regions.py +++ b/regions.py | |||
@@ -49,8 +49,15 @@ def connect_entrance(regions: Dict[str, Region], source_region: Region, target_r | |||
49 | if door is not None: | 49 | if door is not None: |
50 | effective_room = target_region.name if door.room is None else door.room | 50 | effective_room = target_region.name if door.room is None else door.room |
51 | if door.door not in world.player_logic.item_by_door.get(effective_room, {}): | 51 | if door.door not in world.player_logic.item_by_door.get(effective_room, {}): |
52 | for region in world.player_logic.calculate_door_requirements(effective_room, door.door, world).rooms: | 52 | access_reqs = world.player_logic.calculate_door_requirements(effective_room, door.door, world) |
53 | for region in access_reqs.rooms: | ||
53 | world.multiworld.register_indirect_condition(regions[region], connection) | 54 | world.multiworld.register_indirect_condition(regions[region], connection) |
55 | |||
56 | # This pretty much only applies to Orange Tower Sixth Floor -> Orange Tower Basement. | ||
57 | if access_reqs.the_master: | ||
58 | for mastery_req in world.player_logic.mastery_reqs: | ||
59 | for region in mastery_req.rooms: | ||
60 | world.multiworld.register_indirect_condition(regions[region], connection) | ||
54 | 61 | ||
55 | if not pilgrimage and world.options.enable_pilgrimage and is_acceptable_pilgrimage_entrance(entrance_type, world)\ | 62 | if not pilgrimage and world.options.enable_pilgrimage and is_acceptable_pilgrimage_entrance(entrance_type, world)\ |
56 | and source_region.name != "Menu": | 63 | and source_region.name != "Menu": |