Nerf top speed of drift boost

This commit is contained in:
Sryder 2017-03-10 02:38:54 +00:00
parent a543c59e57
commit a660c65c3f

View file

@ -1042,7 +1042,7 @@ static fixed_t K_GetKartBoostPower(player_t *player, boolean speed)
{ // Mega Mushroom { // Mega Mushroom
if (speed) if (speed)
{ {
boostvalue = max(boostvalue, 2*(FRACUNIT/8)); // + 25% boostvalue = max(boostvalue, FRACUNIT/4); // + 25%
} }
} }
if (player->kartstuff[k_startimer]) if (player->kartstuff[k_startimer])
@ -1055,7 +1055,7 @@ static fixed_t K_GetKartBoostPower(player_t *player, boolean speed)
if (player->kartstuff[k_driftboost]) if (player->kartstuff[k_driftboost])
{ // Drift Boost { // Drift Boost
if (speed) if (speed)
boostvalue = max(boostvalue, FRACUNIT/2); // + 50% boostvalue = max(boostvalue, FRACUNIT/4); // + 25%
else else
boostvalue = max(boostvalue, 4*FRACUNIT); // + 400% boostvalue = max(boostvalue, 4*FRACUNIT); // + 400%
} }