mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-30 00:10:40 +00:00
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:
parent
9aeef3f3d6
commit
ecff96258f
10 changed files with 188 additions and 27 deletions
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue