engine: server: cmds: fix kick command incorrect argc
This commit is contained in:
parent
0e2abf9040
commit
a27375d1f5
1 changed files with 1 additions and 1 deletions
|
@ -573,7 +573,7 @@ static void SV_Kick_f( void )
|
||||||
sv_client_t *cl;
|
sv_client_t *cl;
|
||||||
const char *param;
|
const char *param;
|
||||||
|
|
||||||
if( Cmd_Argc() != 2 )
|
if( Cmd_Argc() < 2 )
|
||||||
{
|
{
|
||||||
Con_Printf( S_USAGE "kick <#id|name> [reason]\n" );
|
Con_Printf( S_USAGE "kick <#id|name> [reason]\n" );
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue