mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-20 19:02:37 +00:00
Nerf top speed of drift boost
This commit is contained in:
parent
a543c59e57
commit
a660c65c3f
1 changed files with 2 additions and 2 deletions
|
@ -1042,7 +1042,7 @@ static fixed_t K_GetKartBoostPower(player_t *player, boolean speed)
|
|||
{ // Mega Mushroom
|
||||
if (speed)
|
||||
{
|
||||
boostvalue = max(boostvalue, 2*(FRACUNIT/8)); // + 25%
|
||||
boostvalue = max(boostvalue, FRACUNIT/4); // + 25%
|
||||
}
|
||||
}
|
||||
if (player->kartstuff[k_startimer])
|
||||
|
@ -1055,7 +1055,7 @@ static fixed_t K_GetKartBoostPower(player_t *player, boolean speed)
|
|||
if (player->kartstuff[k_driftboost])
|
||||
{ // Drift Boost
|
||||
if (speed)
|
||||
boostvalue = max(boostvalue, FRACUNIT/2); // + 50%
|
||||
boostvalue = max(boostvalue, FRACUNIT/4); // + 25%
|
||||
else
|
||||
boostvalue = max(boostvalue, 4*FRACUNIT); // + 400%
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue