mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-01 12:43:33 +00:00
Blue sparks trail longer
This commit is contained in:
parent
ed9919d47c
commit
f235a50d2e
1 changed files with 2 additions and 2 deletions
|
|
@ -3185,25 +3185,25 @@ static void K_SpawnDriftSparks(player_t *player)
|
|||
{
|
||||
// Stage 3: Rainbow
|
||||
size = 2;
|
||||
trail = 2;
|
||||
|
||||
if (player->kartstuff[k_driftcharge] <= (K_GetKartDriftSparkValue(player)*4)+(32*3))
|
||||
{
|
||||
// transition
|
||||
spark->color = SKINCOLOR_SILVER;
|
||||
P_SetScale(spark, (spark->destscale = spark->scale*3/2));
|
||||
trail = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
spark->color = (UINT8)(1 + (leveltime % (MAXSKINCOLORS-1)));
|
||||
spark->colorized = true;
|
||||
trail = 2;
|
||||
}
|
||||
}
|
||||
else if (player->kartstuff[k_driftcharge] >= K_GetKartDriftSparkValue(player)*2)
|
||||
{
|
||||
// Stage 2: Blue
|
||||
size = 2;
|
||||
trail = 1;
|
||||
|
||||
if (player->kartstuff[k_driftcharge] <= (K_GetKartDriftSparkValue(player)*2)+(32*3))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue