From 52cb42b6ae5fd1aa66d607075c2dce13b30e6e9b Mon Sep 17 00:00:00 2001 From: Beu Date: Fri, 14 Jul 2023 22:54:53 +0200 Subject: [PATCH] fix players still alive when crushed --- LastManStanding.Script.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LastManStanding.Script.txt b/LastManStanding.Script.txt index 609386c..0289ee9 100644 --- a/LastManStanding.Script.txt +++ b/LastManStanding.Script.txt @@ -4,7 +4,7 @@ #Extends "Libs/Nadeo/TMNext/TrackMania/Modes/TMNextRoundsBase.Script.txt" #Const CompatibleMapTypes "TrackMania\\TM_Race,TM_Race" -#Const Version "2023-07-13" +#Const Version "2023-07-14" #Const ScriptName "Modes/TM2020-Gamemodes/LastManStanding.Script.txt" // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // @@ -360,6 +360,7 @@ foreach (Event in RacePendingEvents) { } case Events::C_Type_Eliminated: { ThrottleUpdate = True; + Race::StopSkipOutro(Event.Player); UpdateCustomRanking(Event.Player.User, True); } }