mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-26 03:12:18 -05:00
clear bongo bongo static effect on actor reset (#2603)
This commit is contained in:
parent
39acd71fc4
commit
1ce9634f65
@ -247,7 +247,7 @@ const ActorInit Boss_Sst_InitVars = {
|
||||
(ActorFunc)BossSst_Destroy,
|
||||
(ActorFunc)BossSst_UpdateHand,
|
||||
(ActorFunc)BossSst_DrawHand,
|
||||
NULL,
|
||||
(ActorResetFunc)BossSst_Reset,
|
||||
};
|
||||
|
||||
#include "z_boss_sst_colchk.c"
|
||||
@ -3268,4 +3268,13 @@ void BossSst_Reset(void) {
|
||||
|
||||
sCutsceneCamera= 0;
|
||||
sBodyStatic = false;
|
||||
// Reset death colors
|
||||
sBodyColor.a = 255;
|
||||
sBodyColor.r = 255;
|
||||
sBodyColor.g = 255;
|
||||
sBodyColor.b = 255;
|
||||
sStaticColor.a = 255;
|
||||
sStaticColor.r = 0;
|
||||
sStaticColor.g = 0;
|
||||
sStaticColor.b = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user