Stronger top speed for the startup boost

This commit is contained in:
Sally Coolatta 2020-07-27 01:46:08 -04:00
parent 679f3223b6
commit b4ae2ea896
2 changed files with 2 additions and 2 deletions

View file

@ -2131,7 +2131,7 @@ static void K_GetKartBoostPower(player_t *player)
if (player->kartstuff[k_startboost]) // Startup Boost
{
ADDBOOST(FRACUNIT/4, 6*FRACUNIT); // + 25% top speed, + 600% acceleration
ADDBOOST(FRACUNIT/3, 4*FRACUNIT); // + 33% top speed, + 400% acceleration
}
if (player->kartstuff[k_driftboost]) // Drift Boost

View file

@ -2197,7 +2197,7 @@ static void K_HandleLapIncrement(player_t *player)
else if (rainbowstartavailable == true)
{
S_StartSound(player->mo, sfx_s23c);
player->kartstuff[k_driftboost] = 125;
player->kartstuff[k_startboost] = 125;
K_SpawnDriftBoostExplosion(player, 3);
rainbowstartavailable = false;
}