mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-01-22 17:41:11 +00:00
IOQ3 commit 2269
This commit is contained in:
parent
ccaaa1713e
commit
d64afc3be0
1 changed files with 4 additions and 4 deletions
|
@ -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
|
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;
|
client_t *cl;
|
||||||
|
|
||||||
// make sure server is running
|
// make sure server is running
|
||||||
|
@ -1039,7 +1039,7 @@ static void SV_KickNum_f( void ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( Cmd_Argc() != 2 ) {
|
if ( Cmd_Argc() != 2 ) {
|
||||||
Com_Printf ("Usage: kicknum <client number>\n");
|
Com_Printf ("Usage: clientkick <client number>\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1318,7 +1318,7 @@ void SV_AddOperatorCommands( void ) {
|
||||||
Cmd_AddCommand ("banClient", SV_BanNum_f);
|
Cmd_AddCommand ("banClient", SV_BanNum_f);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
Cmd_AddCommand ("clientkick", SV_KickNum_f);
|
Cmd_AddCommand ("clientkick", SV_ClientKick_f);
|
||||||
Cmd_AddCommand ("status", SV_Status_f);
|
Cmd_AddCommand ("status", SV_Status_f);
|
||||||
Cmd_AddCommand ("serverinfo", SV_Serverinfo_f);
|
Cmd_AddCommand ("serverinfo", SV_Serverinfo_f);
|
||||||
Cmd_AddCommand ("systeminfo", SV_Systeminfo_f);
|
Cmd_AddCommand ("systeminfo", SV_Systeminfo_f);
|
||||||
|
|
Loading…
Reference in a new issue