mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Fixed [ 1215000 ] Qizmo User Input Prompt bug
Removed an extra space, which was confusing qizmo. Was actually a Qizmo bug with poor parsing. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1079 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
9a9b08c0a2
commit
3aeebf7a82
1 changed files with 2 additions and 2 deletions
|
@ -3249,10 +3249,10 @@ static void CL_Say (qboolean team, char *extra)
|
|||
|
||||
#ifdef Q3CLIENT
|
||||
if (cls.protocol == CP_QUAKE3)
|
||||
CLQ3_SendClientCommand("%s %s%s", team ? "say_team " : "say ", extra?extra:"", sendtext);
|
||||
CLQ3_SendClientCommand("%s %s%s", team ? "say_team" : "say", extra?extra:"", sendtext);
|
||||
else
|
||||
#endif
|
||||
CL_SendClientCommand(true, "%s \"%s%s\"", team ? "say_team " : "say ", extra?extra:"", sendtext);
|
||||
CL_SendClientCommand(true, "%s \"%s%s\"", team ? "say_team" : "say", extra?extra:"", sendtext);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue