cmd.[ch]:

api change: Cmd_Args () now takes a parameter inidcating which arg to
	start at for grabbing the un-parsed command line
qw/source/sv_ccmds.c:
	implement kk's tell command and user name matching (though # is used for
	the wildcard and it's still case sensitive)
everything else:
	adjust for the new Cmd_Args protype
This commit is contained in:
Bill Currie 2001-07-10 18:25:54 +00:00
parent 9aeef3f3d6
commit ecff96258f
10 changed files with 188 additions and 27 deletions

View file

@ -810,7 +810,7 @@ SV_Say (qboolean team)
host_client->whensaid[host_client->whensaidhead] = realtime;
}
p = Cmd_Args ();
p = Cmd_Args (1);
if (*p == '"') {
p++;
@ -844,7 +844,6 @@ SV_Say (qboolean team)
}
}
/*
SV_Say_f
*/