Fix messages consisting of emotes (that map to whitespace control characters, such as single music note) not showing on IRC.

This commit is contained in:
UnknownShadow200 2016-06-16 12:05:38 +10:00
parent e2720274d3
commit 5ec756c064

View File

@ -215,7 +215,7 @@ namespace MCGalaxy {
}
void Player_PlayerChat(Player p, string message) {
if (String.IsNullOrEmpty(message.Trim())) return;
if (String.IsNullOrEmpty(message.Trim(trimChars))) return;
if (!IsConnected()) return;
string name = Server.ircPlayerTitles ? p.FullName : p.group.prefix + p.ColoredName;