diff options
author | James Haley | 2014-10-25 16:43:03 -0500 |
---|---|---|
committer | James Haley | 2014-10-25 16:43:03 -0500 |
commit | 3ecb69e19202e36faae9448d164862b7fdbda189 (patch) | |
tree | dca714e096c8da671af0cb767460568011a09f9f | |
parent | d91383ee4057a2fc6fc2fb80144abb34273a6d7f (diff) | |
download | chocolate-doom-3ecb69e19202e36faae9448d164862b7fdbda189.tar.gz chocolate-doom-3ecb69e19202e36faae9448d164862b7fdbda189.tar.bz2 chocolate-doom-3ecb69e19202e36faae9448d164862b7fdbda189.zip |
Must allow HU_CHANGENAME in chat_dest range
Verified against disassembly. Otherwise, other side does not see name
changes as anything other than a message.
-rw-r--r-- | src/strife/hu_stuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strife/hu_stuff.c b/src/strife/hu_stuff.c index 17e27a6e..dbb14db8 100644 --- a/src/strife/hu_stuff.c +++ b/src/strife/hu_stuff.c @@ -437,7 +437,7 @@ void HU_Ticker(void) if (i != consoleplayer && (c = players[i].cmd.chatchar)) { - if (c <= HU_BROADCAST) + if (c <= HU_CHANGENAME) // [STRIFE]: allow HU_CHANGENAME here chat_dest[i] = c; else { |