Less volatile EXP above 8p

This commit is contained in:
Antonio Martinez 2025-09-12 23:24:38 -04:00
parent a42e39a40a
commit 88fcb7c46d

View file

@ -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;
}