mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
cl_parsewhitetext fix
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1535 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
87ff696bb1
commit
1d28aaf7ac
1 changed files with 1 additions and 1 deletions
|
@ -3310,7 +3310,7 @@ void CL_PrintChat(player_info_t *plr, char *rawmsg, char *msg, int plrflags)
|
|||
|
||||
// print message
|
||||
con_ormask = CON_STANDARDMASK;
|
||||
if (cl_parsewhitetext.value && (plrflags & TPM_TEAM))
|
||||
if (cl_parsewhitetext.value && (cl_parsewhitetext.value == 1 || (plrflags & TPM_TEAM)))
|
||||
{
|
||||
char *t, *u;
|
||||
|
||||
|
|
Loading…
Reference in a new issue