Skip to content

Commit

Permalink
commented out crash site entrances disabling
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Jul 21, 2024
1 parent ae69ff1 commit 72c6ae7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Dolphin scripts/Entrance Randomizer/lib/entrance_rando.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,12 @@ class Priority(IntEnum):
SHOWN_DISABLED_TRANSITIONS = (
# Until we can set the "previous area id" in memory consistently,
# Crash Site is a risk of progress reset
(LevelCRC.CRASH_SITE, LevelCRC.JUNGLE_CANYON),
(LevelCRC.CRASH_SITE, LevelCRC.PLANE_COCKPIT),
(LevelCRC.JUNGLE_CANYON, LevelCRC.CRASH_SITE),
(LevelCRC.PLANE_COCKPIT, LevelCRC.CRASH_SITE),
# NOTE: Commented out temporarily due to incompatibility
# with the current closed door logic
# (LevelCRC.CRASH_SITE, LevelCRC.JUNGLE_CANYON),
# (LevelCRC.CRASH_SITE, LevelCRC.PLANE_COCKPIT),
# (LevelCRC.JUNGLE_CANYON, LevelCRC.CRASH_SITE),
# (LevelCRC.PLANE_COCKPIT, LevelCRC.CRASH_SITE),
# Mouth of Inti has 2 connections with Altar of Huitaca, which causes problems,
# basically it's very easy to get softlocked by the spider web when entering Altar of Huitaca
# So for now just don't randomize it. That way runs don't just end out of nowhere
Expand Down

0 comments on commit 72c6ae7

Please sign in to comment.