Skip to content

Commit

Permalink
Fixes for 1.40.2.5 update (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
himenekocn authored Aug 10, 2024
1 parent 7932385 commit 75d8c2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/client_cvar_value.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ int ClientCvarValue::SendCvarValueQueryToClient(CPlayerSlot nSlot, const char* p
msg->set_cookie(iQueryCvarCookie);
msg->set_cvar_name(pszCvarName);

pNetChannel->SendNetMessage(pMsg, msg, BUF_DEFAULT);
pNetChannel->SendNetMessage(msg, BUF_DEFAULT);

pMsg->DeallocateMessage(msg);
delete msg;

return iQueryCvarCookie;
}
Expand Down Expand Up @@ -209,7 +209,7 @@ const char* ClientCvarValue::GetLicense()

const char* ClientCvarValue::GetVersion()
{
return "1.0.5";
return "1.0.6";
}

const char* ClientCvarValue::GetDate()
Expand Down

0 comments on commit 75d8c2e

Please sign in to comment.