|
|
|
@ -60,6 +60,7 @@ CVAR_DEFINE_AUTO( sv_log_singleplayer, "0", FCVAR_ARCHIVE, "allows logging in si
@@ -60,6 +60,7 @@ CVAR_DEFINE_AUTO( sv_log_singleplayer, "0", FCVAR_ARCHIVE, "allows logging in si
|
|
|
|
|
CVAR_DEFINE_AUTO( sv_log_onefile, "0", FCVAR_ARCHIVE, "logs server information to only one file" ); |
|
|
|
|
CVAR_DEFINE_AUTO( sv_trace_messages, "0", FCVAR_LATCH, "enable server usermessages tracing (good for developers)" ); |
|
|
|
|
CVAR_DEFINE_AUTO( sv_master_response_timeout, "4", FCVAR_ARCHIVE, "master server heartbeat response timeout in seconds" ); |
|
|
|
|
CVAR_DEFINE_AUTO( sv_autosave, "1", FCVAR_ARCHIVE|FCVAR_SERVER, "enable autosave command" ); |
|
|
|
|
|
|
|
|
|
// game-related cvars
|
|
|
|
|
CVAR_DEFINE_AUTO( mapcyclefile, "mapcycle.txt", 0, "name of multiplayer map cycle configuration file" ); |
|
|
|
@ -981,6 +982,8 @@ void SV_Init( void )
@@ -981,6 +982,8 @@ void SV_Init( void )
|
|
|
|
|
Cvar_RegisterVariable( &sv_enttools_enable ); |
|
|
|
|
Cvar_RegisterVariable( &sv_enttools_maxfire ); |
|
|
|
|
|
|
|
|
|
Cvar_RegisterVariable( &sv_autosave ); |
|
|
|
|
|
|
|
|
|
sv_allow_joystick = Cvar_Get( "sv_allow_joystick", "1", FCVAR_ARCHIVE, "allow connect with joystick enabled" ); |
|
|
|
|
sv_allow_mouse = Cvar_Get( "sv_allow_mouse", "1", FCVAR_ARCHIVE, "allow connect with mouse" ); |
|
|
|
|
sv_allow_touch = Cvar_Get( "sv_allow_touch", "1", FCVAR_ARCHIVE, "allow connect with touch controls" ); |
|
|
|
|