mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Change red-to-blue spark transition color to SKINCOLOR_NOVA
This commit is contained in:
parent
5e001a43ef
commit
80977e1d1f
1 changed files with 3 additions and 2 deletions
|
|
@ -3574,11 +3574,12 @@ UINT16 K_DriftSparkColor(player_t *player, INT32 charge)
|
||||||
// Stage 3: Purple
|
// Stage 3: Purple
|
||||||
if (charge <= dsthree+(16*3))
|
if (charge <= dsthree+(16*3))
|
||||||
{
|
{
|
||||||
|
// transition 1
|
||||||
color = SKINCOLOR_TAFFY;
|
color = SKINCOLOR_TAFFY;
|
||||||
}
|
}
|
||||||
else if (charge <= dsthree+(32*3))
|
else if (charge <= dsthree+(32*3))
|
||||||
{
|
{
|
||||||
// transition
|
// transition 2
|
||||||
color = SKINCOLOR_MOONSET;
|
color = SKINCOLOR_MOONSET;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
@ -3592,7 +3593,7 @@ UINT16 K_DriftSparkColor(player_t *player, INT32 charge)
|
||||||
if (charge <= dstwo+(32*3))
|
if (charge <= dstwo+(32*3))
|
||||||
{
|
{
|
||||||
// transition
|
// transition
|
||||||
color = SKINCOLOR_PURPLE;
|
color = SKINCOLOR_NOVA;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue