mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
The dedicated server needs this as well
This commit is contained in:
parent
b37a3bdeba
commit
dbb85e97f0
@ -84,6 +84,9 @@ ConVar* stream_overlay_mode = nullptr;
|
|||||||
ConVar* modsystem_enable = nullptr;
|
ConVar* modsystem_enable = nullptr;
|
||||||
ConVar* modsystem_debug = nullptr;
|
ConVar* modsystem_debug = nullptr;
|
||||||
|
|
||||||
|
ConVar* eula_version = nullptr;
|
||||||
|
ConVar* eula_version_accepted = nullptr;
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// SERVER |
|
// SERVER |
|
||||||
#ifndef CLIENT_DLL
|
#ifndef CLIENT_DLL
|
||||||
@ -241,8 +244,6 @@ ConVar* con_suggest_showflags = nullptr;
|
|||||||
|
|
||||||
ConVar* origin_disconnectWhenOffline = nullptr;
|
ConVar* origin_disconnectWhenOffline = nullptr;
|
||||||
ConVar* discord_updatePresence = nullptr;
|
ConVar* discord_updatePresence = nullptr;
|
||||||
ConVar* eula_version = nullptr;
|
|
||||||
ConVar* eula_version_accepted = nullptr;
|
|
||||||
|
|
||||||
ConVar* settings_reflex = nullptr;
|
ConVar* settings_reflex = nullptr;
|
||||||
ConVar* serverbrowser_hideEmptyServers = nullptr;
|
ConVar* serverbrowser_hideEmptyServers = nullptr;
|
||||||
@ -534,6 +535,9 @@ void ConVar_InitShipped(void)
|
|||||||
base_tickinterval_sp = g_pCVar->FindVar("base_tickinterval_sp");
|
base_tickinterval_sp = g_pCVar->FindVar("base_tickinterval_sp");
|
||||||
base_tickinterval_mp = g_pCVar->FindVar("base_tickinterval_mp");
|
base_tickinterval_mp = g_pCVar->FindVar("base_tickinterval_mp");
|
||||||
fs_showAllReads = g_pCVar->FindVar("fs_showAllReads");
|
fs_showAllReads = g_pCVar->FindVar("fs_showAllReads");
|
||||||
|
|
||||||
|
eula_version = g_pCVar->FindVar("eula_version");
|
||||||
|
eula_version_accepted = g_pCVar->FindVar("eula_version_accepted");
|
||||||
#ifndef DEDICATED
|
#ifndef DEDICATED
|
||||||
cl_move_use_dt = g_pCVar->FindVar("cl_move_use_dt");
|
cl_move_use_dt = g_pCVar->FindVar("cl_move_use_dt");
|
||||||
cl_updaterate_mp = g_pCVar->FindVar("cl_updaterate_mp");
|
cl_updaterate_mp = g_pCVar->FindVar("cl_updaterate_mp");
|
||||||
@ -562,8 +566,6 @@ void ConVar_InitShipped(void)
|
|||||||
#ifndef DEDICATED
|
#ifndef DEDICATED
|
||||||
origin_disconnectWhenOffline = g_pCVar->FindVar("origin_disconnectWhenOffline");
|
origin_disconnectWhenOffline = g_pCVar->FindVar("origin_disconnectWhenOffline");
|
||||||
discord_updatePresence = g_pCVar->FindVar("discord_updatePresence");
|
discord_updatePresence = g_pCVar->FindVar("discord_updatePresence");
|
||||||
eula_version = g_pCVar->FindVar("eula_version");
|
|
||||||
eula_version_accepted = g_pCVar->FindVar("eula_version_accepted");
|
|
||||||
#endif // !DEDICATED
|
#endif // !DEDICATED
|
||||||
mp_gamemode = g_pCVar->FindVar("mp_gamemode");
|
mp_gamemode = g_pCVar->FindVar("mp_gamemode");
|
||||||
ip_cvar = g_pCVar->FindVar("ip");
|
ip_cvar = g_pCVar->FindVar("ip");
|
||||||
|
@ -75,6 +75,9 @@ extern ConVar* stream_overlay_mode;
|
|||||||
extern ConVar* modsystem_enable;
|
extern ConVar* modsystem_enable;
|
||||||
extern ConVar* modsystem_debug;
|
extern ConVar* modsystem_debug;
|
||||||
|
|
||||||
|
extern ConVar* eula_version;
|
||||||
|
extern ConVar* eula_version_accepted;
|
||||||
|
|
||||||
//-------------------------------------------------------------------------
|
//-------------------------------------------------------------------------
|
||||||
// SERVER |
|
// SERVER |
|
||||||
#ifndef CLIENT_DLL
|
#ifndef CLIENT_DLL
|
||||||
@ -233,8 +236,6 @@ extern ConVar* con_suggest_showflags;
|
|||||||
|
|
||||||
extern ConVar* origin_disconnectWhenOffline;
|
extern ConVar* origin_disconnectWhenOffline;
|
||||||
extern ConVar* discord_updatePresence;
|
extern ConVar* discord_updatePresence;
|
||||||
extern ConVar* eula_version;
|
|
||||||
extern ConVar* eula_version_accepted;
|
|
||||||
#endif // !DEDICATED
|
#endif // !DEDICATED
|
||||||
//-------------------------------------------------------------------------
|
//-------------------------------------------------------------------------
|
||||||
// FILESYSTEM |
|
// FILESYSTEM |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user