mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Add 'sv_stats' cvar to SDK
Server CPU statistics.
This commit is contained in:
parent
367b2cf5bc
commit
adb2ed60a4
@ -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.
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user