Change red-to-blue spark transition color to SKINCOLOR_NOVA

This commit is contained in:
lachablock 2021-04-21 16:58:16 +10:00
parent 5e001a43ef
commit 80977e1d1f

View file

@ -3574,11 +3574,12 @@ UINT16 K_DriftSparkColor(player_t *player, INT32 charge)
// Stage 3: Purple
if (charge <= dsthree+(16*3))
{
// transition 1
color = SKINCOLOR_TAFFY;
}
else if (charge <= dsthree+(32*3))
{
// transition
// transition 2
color = SKINCOLOR_MOONSET;
}
else
@ -3592,7 +3593,7 @@ UINT16 K_DriftSparkColor(player_t *player, INT32 charge)
if (charge <= dstwo+(32*3))
{
// transition
color = SKINCOLOR_PURPLE;
color = SKINCOLOR_NOVA;
}
else
{