mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-11 21:56:43 +00:00
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:
commit
2b075407a2
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue