diff options
| author | xxAtrain223 <xxAtrain223@users.noreply.github.com> | 2025-08-12 21:55:38 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-12 19:55:38 -0700 |
| commit | 353ad944be88b969e44faa0619cc5adfed98d561 (patch) | |
| tree | 8a9f91a8a5fb3a7840ae8f13ff76bd35563810fd | |
| parent | 89c1c97522763c280226f60fcba85620d26ed5ad (diff) | |
Removed SHUTTER_BACK_LOCKED and SHUTTER_BOSS from GetDungeonSmallKeyDoors. (#5738)
| -rw-r--r-- | soh/soh/Enhancements/randomizer/logic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/soh/Enhancements/randomizer/logic.cpp b/soh/soh/Enhancements/randomizer/logic.cpp index 710437dc6..a9e7264a0 100644 --- a/soh/soh/Enhancements/randomizer/logic.cpp +++ b/soh/soh/Enhancements/randomizer/logic.cpp @@ -2228,7 +2228,7 @@ const std::vector<uint8_t>& GetDungeonSmallKeyDoors(SceneID sceneId) { } } else if (transitionActor.id == ACTOR_DOOR_SHUTTER) { uint8_t doorType = (transitionActor.params >> 7) & 15; - if (doorType == SHUTTER_BACK_LOCKED || doorType == SHUTTER_BOSS || doorType == SHUTTER_KEY_LOCKED) { + if (doorType == SHUTTER_KEY_LOCKED) { dungeonSmallKeyDoors[key].emplace_back(transitionActor.params & 0x3F); } } |
