Fixed issue with District ER not including SW as a connector

This commit is contained in:
codemann8
2024-12-12 18:26:31 -06:00
parent d95e5cf4d2
commit 459eca9b4a

View File

@@ -907,7 +907,7 @@ def figure_out_connectors(exits, avail, cross_world=True):
cave_list = list(Connector_List)
if avail.assumed_loose_caves or (not avail.skull_handled and (cross_world or not avail.world.is_tile_swapped(0x00, avail.player))):
skull_connector = [x for x in ['Skull Woods Second Section Exit (West)', 'Skull Woods Second Section Exit (East)'] if x in exits]
cave_list.extend(skull_connector)
cave_list.extend([skull_connector])
if avail.assumed_loose_caves or not avail.keep_drops_together:
cave_list.extend([[entrance_map[e]] for e in linked_drop_map.values() if 'Inverted ' not in e and 'Skull Woods ' not in e])