Fix check for empty rconpassword in CL_Rcon_f

This commit is contained in:
Tim Angus 2015-10-04 21:11:24 +01:00
parent 1902b6e659
commit 7e0dac7517

View file

@ -1820,7 +1820,7 @@ void CL_Rcon_f( void ) {
char message[MAX_RCON_MESSAGE];
netadr_t to;
if ( !rcon_client_password->string ) {
if ( !rcon_client_password->string[0] ) {
Com_Printf ("You must set 'rconpassword' before\n"
"issuing an rcon command.\n");
return;