From 31a80294e751869ad84f3909aa3ad85f7caa09a9 Mon Sep 17 00:00:00 2001 From: Avasam Date: Tue, 16 Jul 2024 14:22:11 -0400 Subject: [PATCH] Fix Eyes of Doom anti-softlock not working from Mountain Overlook entrance (#75) --- Dolphin scripts/Entrance Randomizer/lib/constants.py | 2 +- Dolphin scripts/Entrance Randomizer/newsfragments/75.bugfix.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Dolphin scripts/Entrance Randomizer/newsfragments/75.bugfix.md diff --git a/Dolphin scripts/Entrance Randomizer/lib/constants.py b/Dolphin scripts/Entrance Randomizer/lib/constants.py index 5609001..fa8bcb4 100644 --- a/Dolphin scripts/Entrance Randomizer/lib/constants.py +++ b/Dolphin scripts/Entrance Randomizer/lib/constants.py @@ -250,7 +250,7 @@ class LevelCRC(IntEnum): SOFTLOCKABLE_ENTRANCES = { int(LevelCRC.FLOODED_COURTYARD): 8, # From st claire: 7 - int(LevelCRC.EYES_OF_DOOM): 9, + int(LevelCRC.EYES_OF_DOOM): 12, # From Scorpion Temple: 9 int(LevelCRC.VALLEY_OF_SPIRITS): 8, int(LevelCRC.COPACANTI_LAKE): 8, } diff --git a/Dolphin scripts/Entrance Randomizer/newsfragments/75.bugfix.md b/Dolphin scripts/Entrance Randomizer/newsfragments/75.bugfix.md new file mode 100644 index 0000000..8c1e54e --- /dev/null +++ b/Dolphin scripts/Entrance Randomizer/newsfragments/75.bugfix.md @@ -0,0 +1 @@ +Fix Eyes of Doom anti-softlock not working from Mountain Overlook entrance -- by @Avasam