From bade6e62c0942617bec16551ab6be31736c00176 Mon Sep 17 00:00:00 2001 From: Beu Date: Fri, 5 Apr 2024 15:12:29 +0200 Subject: [PATCH] Only apply bonus to players who finished --- TM_RoyalRounds_Online.Script.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TM_RoyalRounds_Online.Script.txt b/TM_RoyalRounds_Online.Script.txt index fb98039..d99485d 100644 --- a/TM_RoyalRounds_Online.Script.txt +++ b/TM_RoyalRounds_Online.Script.txt @@ -674,7 +674,7 @@ Integer GetFinishTimeout(Integer _FinishTimeout) { Points = PointsRepartition[PointsRepartition.count - 1]; } declare Integer CurrentSegment for Player.Score; - if (CurrentSegment == S_SegmentsPerRound) { + if (CurrentSegment == S_SegmentsPerRound && Scores::GetPlayerPrevRaceTime(Player.Score) > 0) { Points += BonusForFinishers; } Scores::SetPlayerRoundPoints(Player.Score, Points);