mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Lower speed increase from spheres (100%->66%)
This commit is contained in:
parent
b74cecff59
commit
76a42ca44f
1 changed files with 1 additions and 1 deletions
|
|
@ -3471,7 +3471,7 @@ fixed_t K_GetKartSpeed(const player_t *player, boolean doboostpower, boolean dor
|
||||||
|
|
||||||
if (player->spheres > 0)
|
if (player->spheres > 0)
|
||||||
{
|
{
|
||||||
fixed_t sphereAdd = (FRACUNIT/40); // 100% at max
|
fixed_t sphereAdd = (FRACUNIT/60); // 66% at max
|
||||||
finalspeed = FixedMul(finalspeed, FRACUNIT + (sphereAdd * player->spheres));
|
finalspeed = FixedMul(finalspeed, FRACUNIT + (sphereAdd * player->spheres));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue