From 8c1e746556495f8135d8c7315feddee487ce3a27 Mon Sep 17 00:00:00 2001 From: aerinon Date: Thu, 22 Jul 2021 16:26:08 -0700 Subject: [PATCH] Inverted pathing fix (Castle S&Q may be required) --- DoorShuffle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DoorShuffle.py b/DoorShuffle.py index 5231fc91..264b2e5a 100644 --- a/DoorShuffle.py +++ b/DoorShuffle.py @@ -1835,7 +1835,7 @@ def find_accessible_entrances(world, player, builder): elif world.mode[player] != 'inverted': start_regions = ['Links House', 'Sanctuary'] else: - start_regions = ['Inverted Links House', 'Inverted Dark Sanctuary'] + start_regions = ['Inverted Links House', 'Inverted Dark Sanctuary', 'Hyrule Castle Ledge'] regs = convert_regions(start_regions, world, player) visited_regions = set() visited_entrances = []