fix flags on sv_forceChatToTeamOnly

This commit is contained in:
rexx 2022-09-18 21:49:14 +01:00
parent 7e92150eae
commit f81780a72d
3 changed files with 6 additions and 0 deletions

View File

@ -255,6 +255,10 @@ void ConVar::InitShipped(void) const
hostport = g_pCVar->FindVar("hostport");
host_hasIrreversibleShutdown = g_pCVar->FindVar("host_hasIrreversibleShutdown");
net_usesocketsforloopback = g_pCVar->FindVar("net_usesocketsforloopback");
sv_forceChatToTeamOnly = g_pCVar->FindVar("sv_forceChatToTeamOnly");
sv_forceChatToTeamOnly->RemoveFlags(FCVAR_DEVELOPMENTONLY);
sv_forceChatToTeamOnly->AddFlags(FCVAR_REPLICATED);
#ifndef CLIENT_DLL
ai_script_nodes_draw->SetValue(-1);

View File

@ -66,6 +66,7 @@ ConVar* sv_pylonVisibility = nullptr;
ConVar* sv_pylonRefreshInterval = nullptr;
ConVar* sv_banlistRefreshInterval = nullptr;
ConVar* sv_statusRefreshInterval = nullptr;
ConVar* sv_forceChatToTeamOnly = nullptr;
ConVar* sv_autoReloadRate = nullptr;

View File

@ -62,6 +62,7 @@ extern ConVar* sv_pylonVisibility;
extern ConVar* sv_pylonRefreshInterval;
extern ConVar* sv_banlistRefreshInterval;
extern ConVar* sv_statusRefreshInterval;
extern ConVar* sv_forceChatToTeamOnly;
extern ConVar* sv_autoReloadRate;