diff --git a/hl2sdk-cs2 b/hl2sdk-cs2 index f3b44f20..533426bc 160000 --- a/hl2sdk-cs2 +++ b/hl2sdk-cs2 @@ -1 +1 @@ -Subproject commit f3b44f206d38d1b71164e558cd4087d84607d50c +Subproject commit 533426bc896271d83de00dd7b467afd35ac727b1 diff --git a/src/kz/timer/kz_timer.cpp b/src/kz/timer/kz_timer.cpp index ff2ef06c..f716f4fd 100644 --- a/src/kz/timer/kz_timer.cpp +++ b/src/kz/timer/kz_timer.cpp @@ -1364,7 +1364,7 @@ CUtlString KZTimerService::GetCurrentRunMetadata() splitZoneTimesKV->SetToEmptyArray(); FOR_EACH_VEC(this->splitZoneTimes, i) { - KeyValues3 *time = splitZoneTimesKV->AddArrayElementToTail(); + KeyValues3 *time = splitZoneTimesKV->ArrayAddElementToTail(); time->SetDouble(this->splitZoneTimes[i]); } @@ -1372,7 +1372,7 @@ CUtlString KZTimerService::GetCurrentRunMetadata() cpZoneTimesKV->SetToEmptyArray(); FOR_EACH_VEC(this->cpZoneTimes, i) { - KeyValues3 *time = cpZoneTimesKV->AddArrayElementToTail(); + KeyValues3 *time = cpZoneTimesKV->ArrayAddElementToTail(); time->SetDouble(this->cpZoneTimes[i]); } @@ -1381,7 +1381,7 @@ CUtlString KZTimerService::GetCurrentRunMetadata() KeyValues3 *stageZoneTimesKV = kv.FindOrCreateMember("stageZoneTimes"); FOR_EACH_VEC(this->stageZoneTimes, i) { - KeyValues3 *time = stageZoneTimesKV->AddArrayElementToTail(); + KeyValues3 *time = stageZoneTimesKV->ArrayAddElementToTail(); time->SetDouble(this->stageZoneTimes[i]); }