double ring hitbox, buff ring boost to 20% top speed increase

This commit is contained in:
TehRealSalt 2019-03-08 20:33:44 -05:00
parent 9b66e419f1
commit 4a68f98dc2
2 changed files with 3 additions and 3 deletions

View file

@ -5451,7 +5451,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
S_NULL, // xdeathstate
sfx_itemup, // deathsound
38*FRACUNIT, // speed
24*FRACUNIT, // radius
48*FRACUNIT, // radius
48*FRACUNIT, // height
0, // display offset
100, // mass

View file

@ -1964,7 +1964,7 @@ static void K_GetKartBoostPower(player_t *player)
if (player->kartstuff[k_invincibilitytimer]) // Invincibility
{
speedboost = max(speedboost, 3*FRACUNIT/8); // + 37.5%
speedboost = max(speedboost, (3*FRACUNIT)/8); // + 37.5%
accelboost = max(accelboost, 3*FRACUNIT); // + 300%
}
@ -1975,7 +1975,7 @@ static void K_GetKartBoostPower(player_t *player)
if (player->kartstuff[k_ringboost]) // Ring Boost
{
speedboost = max(speedboost, FRACUNIT/8); // + 12.5%
speedboost = max(speedboost, FRACUNIT/5); // + 20%
accelboost = max(accelboost, 2*FRACUNIT); // + 200%
}