From cb0e9adbd7c7e55cc961e43e90ba03fa07d12b60 Mon Sep 17 00:00:00 2001 From: Nicolai Cornelis Date: Sat, 6 May 2023 22:31:57 +0200 Subject: [PATCH] Add missing GoBack causing cvars not to load if using veto_mode --- scripting/get5/matchconfig.sp | 1 + 1 file changed, 1 insertion(+) diff --git a/scripting/get5/matchconfig.sp b/scripting/get5/matchconfig.sp index 81cafc4c..05fe5d66 100644 --- a/scripting/get5/matchconfig.sp +++ b/scripting/get5/matchconfig.sp @@ -964,6 +964,7 @@ static bool LoadMatchFromKeyValue(KeyValues kv, char[] error) { if (!LoadVetoDataKeyValues(kv, error)) { return false; } + kv.GoBack(); } else { GenerateDefaultVetoSetup(g_MapPoolList, g_MapBanOrder, g_NumberOfMapsInSeries, g_LastVetoTeam); }