mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix single-letter messages not being sent
This commit is contained in:
parent
cf6dfecc6a
commit
bc62dc8214
1 changed files with 1 additions and 1 deletions
|
|
@ -1059,7 +1059,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…
Add table
Reference in a new issue