From 72c6ae75c9455c4fa794cb8f2169188cd5e0f07a Mon Sep 17 00:00:00 2001 From: Avasam Date: Sun, 21 Jul 2024 03:37:38 -0400 Subject: [PATCH] commented out crash site entrances disabling --- .../Entrance Randomizer/lib/entrance_rando.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Dolphin scripts/Entrance Randomizer/lib/entrance_rando.py b/Dolphin scripts/Entrance Randomizer/lib/entrance_rando.py index d150a3d..412a0ac 100644 --- a/Dolphin scripts/Entrance Randomizer/lib/entrance_rando.py +++ b/Dolphin scripts/Entrance Randomizer/lib/entrance_rando.py @@ -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