mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-26 13:01:52 +00:00
Less volatile EXP above 8p
This commit is contained in:
parent
a42e39a40a
commit
88fcb7c46d
1 changed files with 3 additions and 0 deletions
|
|
@ -16972,6 +16972,9 @@ static fixed_t K_GradingFactorPower(player_t *player)
|
|||
if (opponents < 8)
|
||||
power += (8 - opponents) * power/4;
|
||||
|
||||
if (opponents > 8)
|
||||
power -= (opponents - 8) * (power/24);
|
||||
|
||||
return power;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue