Skip to content

Commit

Permalink
Update sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
zer0k-z committed Jan 16, 2025
1 parent 7f038e6 commit 0138562
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/kz/timer/kz_timer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1364,15 +1364,15 @@ CUtlString KZTimerService::GetCurrentRunMetadata()
splitZoneTimesKV->SetToEmptyArray();
FOR_EACH_VEC(this->splitZoneTimes, i)
{
KeyValues3 *time = splitZoneTimesKV->AddArrayElementToTail();
KeyValues3 *time = splitZoneTimesKV->ArrayAddElementToTail();
time->SetDouble(this->splitZoneTimes[i]);
}

KeyValues3 *cpZoneTimesKV = kv.FindOrCreateMember("cpZoneTimes");
cpZoneTimesKV->SetToEmptyArray();
FOR_EACH_VEC(this->cpZoneTimes, i)
{
KeyValues3 *time = cpZoneTimesKV->AddArrayElementToTail();
KeyValues3 *time = cpZoneTimesKV->ArrayAddElementToTail();
time->SetDouble(this->cpZoneTimes[i]);
}

Expand All @@ -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]);
}

Expand Down

0 comments on commit 0138562

Please sign in to comment.