mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-23 14:22:16 -05:00
Fix boss soul ice traps (#4921)
This commit is contained in:
parent
63046a89ec
commit
878a8fe465
@ -946,7 +946,13 @@ extern "C" void DrawGanon(PlayState* play) {
|
||||
}
|
||||
|
||||
extern "C" void Randomizer_DrawBossSoul(PlayState* play, GetItemEntry* getItemEntry) {
|
||||
s16 slot = getItemEntry->getItemId - RG_GOHMA_SOUL;
|
||||
s16 slot;
|
||||
if (getItemEntry->getItemId != RG_ICE_TRAP) {
|
||||
slot = getItemEntry->getItemId - RG_GOHMA_SOUL;
|
||||
} else {
|
||||
slot = getItemEntry->drawItemId - RG_GOHMA_SOUL;
|
||||
}
|
||||
|
||||
s16 flameColors[9][3] = {
|
||||
{ 0, 255, 0 }, // Gohma
|
||||
{ 255, 0, 100 }, // King Dodongo
|
||||
|
Loading…
x
Reference in New Issue
Block a user