mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-15 21:50:59 +01:00
engine: don't double register rcon_password cvar
This commit is contained in:
parent
60e7a7aa23
commit
a3ef6c955c
@ -40,7 +40,6 @@ CVAR_DEFINE_AUTO( cl_logofile, "lambda", FCVAR_ARCHIVE, "player logo name" );
|
||||
CVAR_DEFINE_AUTO( cl_logocolor, "orange", FCVAR_ARCHIVE, "player logo color" );
|
||||
CVAR_DEFINE_AUTO( cl_logoext, "bmp", FCVAR_ARCHIVE, "temporary cvar to tell engine which logo must be packed" );
|
||||
CVAR_DEFINE_AUTO( cl_test_bandwidth, "1", FCVAR_ARCHIVE, "test network bandwith before connection" );
|
||||
convar_t *rcon_client_password;
|
||||
convar_t *rcon_address;
|
||||
convar_t *cl_timeout;
|
||||
convar_t *cl_nopred;
|
||||
@ -1312,7 +1311,7 @@ void CL_Rcon_f( void )
|
||||
string command;
|
||||
int i;
|
||||
|
||||
if( !COM_CheckString( rcon_client_password->string ))
|
||||
if( !COM_CheckString( rcon_password.string ))
|
||||
{
|
||||
Con_Printf( "You must set 'rcon_password' before issuing an rcon command.\n" );
|
||||
return;
|
||||
@ -1327,7 +1326,7 @@ void CL_Rcon_f( void )
|
||||
NET_Config( true, false ); // allow remote
|
||||
|
||||
Q_strcat( message, "rcon " );
|
||||
Q_strcat( message, rcon_client_password->string );
|
||||
Q_strcat( message, rcon_password.string );
|
||||
Q_strcat( message, " " );
|
||||
|
||||
for( i = 1; i < Cmd_Argc(); i++ )
|
||||
@ -2895,7 +2894,6 @@ void CL_InitLocal( void )
|
||||
cl_charset = Cvar_Get( "cl_charset", "utf-8", FCVAR_ARCHIVE, "1-byte charset to use (iconv style)" );
|
||||
hud_utf8 = Cvar_Get( "hud_utf8", "0", FCVAR_ARCHIVE, "Use utf-8 encoding for hud text" );
|
||||
|
||||
rcon_client_password = Cvar_Get( "rcon_password", "", FCVAR_PRIVILEGED, "remote control client password" );
|
||||
rcon_address = Cvar_Get( "rcon_address", "", FCVAR_PRIVILEGED, "remote control address" );
|
||||
|
||||
cl_trace_messages = Cvar_Get( "cl_trace_messages", "0", FCVAR_ARCHIVE|FCVAR_CHEAT, "enable message names tracing (good for developers)");
|
||||
|
@ -165,6 +165,7 @@ extern convar_t *host_framerate;
|
||||
extern convar_t *host_maxfps;
|
||||
extern convar_t sys_timescale;
|
||||
extern convar_t cl_filterstuffcmd;
|
||||
extern convar_t rcon_password;
|
||||
|
||||
/*
|
||||
==============================================================
|
||||
|
@ -395,7 +395,6 @@ extern convar_t sv_unlag;
|
||||
extern convar_t sv_maxunlag;
|
||||
extern convar_t sv_unlagpush;
|
||||
extern convar_t sv_unlagsamples;
|
||||
extern convar_t rcon_password;
|
||||
extern convar_t rcon_enable;
|
||||
extern convar_t sv_instancedbaseline;
|
||||
extern convar_t sv_background_freeze;
|
||||
|
Loading…
Reference in New Issue
Block a user