From 483ac00fd78c5ac78cbf40f72fbfe6c95f10f001 Mon Sep 17 00:00:00 2001 From: Nicolai Cornelis Date: Mon, 10 Apr 2023 20:53:52 +0200 Subject: [PATCH] Remember to reset on manual map change --- scripting/get5.sp | 1 + 1 file changed, 1 insertion(+) diff --git a/scripting/get5.sp b/scripting/get5.sp index 8ec259c0..2994266d 100644 --- a/scripting/get5.sp +++ b/scripting/get5.sp @@ -900,6 +900,7 @@ public void OnMapStart() { // If the map is changed while a map timer is counting down, kill the timer. This could happen if // a too long mp_match_restart_delay was set and admins decide to manually intervene. if (g_PendingMapChangeTimer != INVALID_HANDLE) { + g_ReadyTimeWaitingUsed = 0; delete g_PendingMapChangeTimer; LogDebug("Killed g_PendingMapChangeTimer as map was changed."); }