Add 'sv_stats' cvar to SDK

Server CPU statistics.
This commit is contained in:
Kawe Mazidjatari 2023-02-18 00:06:24 +01:00
parent 367b2cf5bc
commit adb2ed60a4
3 changed files with 3 additions and 0 deletions

View File

@ -289,6 +289,7 @@ void ConVar::InitShipped(void)
net_usesocketsforloopback = g_pCVar->FindVar("net_usesocketsforloopback");
#ifndef CLIENT_DLL
sv_showhitboxes = g_pCVar->FindVar("sv_showhitboxes");
sv_stats = g_pCVar->FindVar("sv_stats");
sv_forceChatToTeamOnly = g_pCVar->FindVar("sv_forceChatToTeamOnly");
sv_showhitboxes->SetMin(-1); // Allow user to go over each entity manually without going out of bounds.

View File

@ -87,6 +87,7 @@ ConVar* sv_quota_stringCmdsPerSecond = nullptr;
ConVar* sv_simulateBots = nullptr;
ConVar* sv_showhitboxes = nullptr;
ConVar* sv_stats = nullptr;
//#ifdef DEDICATED
ConVar* sv_rcon_debug = nullptr;

View File

@ -83,6 +83,7 @@ extern ConVar* sv_quota_stringCmdsPerSecond;
extern ConVar* sv_simulateBots;
extern ConVar* sv_showhitboxes;
extern ConVar* sv_stats;
//#ifdef DEDICATED
extern ConVar* sv_rcon_debug;