IOQ3 commit 2269

This commit is contained in:
Richard Allen 2012-10-04 15:07:30 +00:00
parent ccaaa1713e
commit d64afc3be0

View file

@ -1024,12 +1024,12 @@ static void SV_ExceptDel_f(void)
/*
==================
SV_KickNum_f
SV_ClientKick_f
Kick a user off of the server FIXME: move to game
==================
*/
static void SV_KickNum_f( void ) {
static void SV_ClientKick_f( void ) {
client_t *cl;
// make sure server is running
@ -1039,7 +1039,7 @@ static void SV_KickNum_f( void ) {
}
if ( Cmd_Argc() != 2 ) {
Com_Printf ("Usage: kicknum <client number>\n");
Com_Printf ("Usage: clientkick <client number>\n");
return;
}
@ -1318,7 +1318,7 @@ void SV_AddOperatorCommands( void ) {
Cmd_AddCommand ("banClient", SV_BanNum_f);
}
#endif
Cmd_AddCommand ("clientkick", SV_KickNum_f);
Cmd_AddCommand ("clientkick", SV_ClientKick_f);
Cmd_AddCommand ("status", SV_Status_f);
Cmd_AddCommand ("serverinfo", SV_Serverinfo_f);
Cmd_AddCommand ("systeminfo", SV_Systeminfo_f);