Merge branch 'fix-final-check-fuckery' into 'master'

Fix final checkpoint granting way too much EXP, especially in low placements

See merge request kart-krew-dev/ring-racers-internal!2920
This commit is contained in:
Ashnal 2025-10-02 01:44:16 +00:00
commit 2b075407a2

View file

@ -17206,7 +17206,7 @@ static fixed_t K_GradingFactorPower(player_t *player, UINT32 gradingpoint)
UINT32 gp = K_GetNumGradingPoints();
if (gradingpoint-1 == gp)
if (gradingpoint == gp - 1)
{
power += FixedMul(power, K_FinalCheckpointPower());
}