Cleaned up game server command usage messages.

This commit is contained in:
Zack Middleton 2012-06-18 15:58:48 +00:00
parent b5acc31a4d
commit a17dafc5e7
1 changed files with 7 additions and 2 deletions

View File

@ -288,7 +288,7 @@ void Svcmd_RemoveIP_f (void)
char str[MAX_TOKEN_CHARS];
if ( trap_Argc() < 2 ) {
G_Printf("Usage: sv removeip <ip-mask>\n");
G_Printf("Usage: removeip <ip-mask>\n");
return;
}
@ -423,6 +423,11 @@ void Svcmd_ForceTeam_f( void ) {
gclient_t *cl;
char str[MAX_TOKEN_CHARS];
if ( trap_Argc() < 3 ) {
G_Printf("Usage: forceteam <player> <team>\n");
return;
}
// find the player
trap_Argv( 1, str, sizeof( str ) );
cl = ClientForString( str );