mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-24 19:52:08 +00:00
Fix single-letter messages not being sent
This commit is contained in:
parent
b933316f23
commit
055d57c56c
1 changed files with 1 additions and 1 deletions
|
@ -977,7 +977,7 @@ static void HU_sendChatMessage(void)
|
|||
newmsg = msg+5+spc;
|
||||
strlcpy(msg, newmsg, 255);
|
||||
}
|
||||
if (ci > 3) // don't send target+flags+empty message.
|
||||
if (ci > 2) // don't send target+flags+empty message.
|
||||
{
|
||||
buf[0] = teamtalk ? -1 : target; // target
|
||||
buf[1] = 0; // flags
|
||||
|
|
Loading…
Reference in a new issue