diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2025-04-04 00:02:21 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2025-04-04 00:02:21 +0200 |
commit | 9526005135d01137bac55c440b506230dcc4058c (patch) | |
tree | 3ad71e0faf2c7b7dc0e1bf42c9e353c89edcea0c /FICS/talkproc.c | |
parent | ffba98f62c947da6fa01120170a13ec4337aa1a5 (diff) |
tell: fixed constant expression result
Diffstat (limited to 'FICS/talkproc.c')
-rw-r--r-- | FICS/talkproc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/FICS/talkproc.c b/FICS/talkproc.c index 3d16be1..601f43b 100644 --- a/FICS/talkproc.c +++ b/FICS/talkproc.c @@ -34,6 +34,8 @@ Markus Uhlin 24/04/14 Refactored and reformatted ALL functions. Markus Uhlin 25/01/18 Fixed -Wshadow + Markus Uhlin 25/04/04 tell: fixed constant expression + result */ #include "stdinclude.h" @@ -296,8 +298,8 @@ tell(int p, int p1, char *msg, int why, int ch) } if (player_censored(p1, p) && parray[p].adminLevel == 0) { - if (why != TELL_KIBITZ || - why != TELL_WHISPER || + if (why != TELL_KIBITZ && + why != TELL_WHISPER && why != TELL_CHANNEL) { pprintf(p, "Player \"%s\" is censoring you.\n", parray[p1].name); |