Merge branch 'chat-len-fix' of git://github.com/Edward850/zdoom into Edward850-chat-len-fix

This commit is contained in:
Randy Heit 2014-12-23 21:31:53 -06:00
commit d3272f75e7

View file

@ -343,6 +343,9 @@ static void CT_ClearChatMessage ()
static void ShoveChatStr (const char *str, BYTE who)
{
if (strlen(str) < 1) // Don't send empty messages
return;
FString substBuff;
if (str[0] == '/' &&