Removed SHUTTER_BACK_LOCKED and SHUTTER_BOSS from GetDungeonSmallKeyDoors. (#5738)

This commit is contained in:
xxAtrain223 2025-08-12 21:55:38 -05:00 committed by GitHub
commit 353ad944be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2228,7 +2228,7 @@ const std::vector<uint8_t>& GetDungeonSmallKeyDoors(SceneID sceneId) {
} }
} else if (transitionActor.id == ACTOR_DOOR_SHUTTER) { } else if (transitionActor.id == ACTOR_DOOR_SHUTTER) {
uint8_t doorType = (transitionActor.params >> 7) & 15; 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); dungeonSmallKeyDoors[key].emplace_back(transitionActor.params & 0x3F);
} }
} }