mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-26 09:52:33 +00:00
Make lap bonus a bit more significant
Instead of early laps being `(x / numlaps)`, it's `(x / numlaps-1)`.
This commit is contained in:
parent
1f91e89a3e
commit
6abc5d48c1
1 changed files with 1 additions and 1 deletions
|
|
@ -279,7 +279,7 @@ void K_UpdatePowerLevels(player_t *player)
|
|||
{
|
||||
INT16 prevInc = inc;
|
||||
|
||||
inc /= numlaps;
|
||||
inc /= max(numlaps-1, 1);
|
||||
|
||||
if (inc == 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue