mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-21 05:43:42 -07:00
Removed SHUTTER_BACK_LOCKED and SHUTTER_BOSS from GetDungeonSmallKeyDoors. (#5738)
This commit is contained in:
parent
89c1c97522
commit
353ad944be
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue