Skip to content

Commit 61fcf8b

Browse files
committed
Update DoorPlacer.py
1 parent dd9d4a5 commit 61fcf8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

randomizer/Patching/DoorPlacer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ def place_door_locations(spoiler, ROM_COPY: LocalROM):
508508
exit_start = getPointerLocation(TableNames.Exits, portal_map)
509509
exits_to_alter = [-1]
510510
if portal_map in LEVEL_MAIN_MAPS:
511-
exits_to_alter = PORTAL_MAP_EXIT_PAIRING[portal_map]
511+
exits_to_alter = [-1] + PORTAL_MAP_EXIT_PAIRING[portal_map]
512512
for exit_index in exits_to_alter:
513513
if exit_index >= 0:
514514
ROM_COPY.seek(exit_start + 12 + (exit_index * 10))

0 commit comments

Comments
 (0)