mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-12 06:06:27 +00:00
Stacked excess ring time = more power
x1.5 times stronger juice from excess rings stacked
This commit is contained in:
parent
832baac4eb
commit
3283ced078
1 changed files with 1 additions and 1 deletions
|
|
@ -3288,7 +3288,7 @@ static void K_GetKartBoostPower(player_t *player)
|
|||
{
|
||||
// This one's a little special: we add extra top speed per tic of ringboost stored up, to allow for Ring Box to really rocket away.
|
||||
// (We compensate when decrementing ringboost to avoid runaway exponential scaling hell.)
|
||||
ADDBOOST(FRACUNIT/4 + (FRACUNIT / 2000 * (player->ringboost)), 4*FRACUNIT, 0); // + 20% top speed, + 400% acceleration, +0% handling
|
||||
ADDBOOST(FRACUNIT/4 + (FRACUNIT / 1500 * (player->ringboost)), 4*FRACUNIT, 0); // + 20% top speed, + 400% acceleration, +0% handling
|
||||
}
|
||||
|
||||
if (player->eggmanexplode) // Ready-to-explode
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue