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

@ -214,8 +214,8 @@ namespace MCGalaxy {
if (!p.hidden) connection.Sender.PublicMessage(channel, msg);
}
void Player_PlayerChat(Player p, string message) {
if (String.IsNullOrEmpty(message.Trim())) return;
void Player_PlayerChat(Player p, string message) {
if (String.IsNullOrEmpty(message.Trim(trimChars))) return;
if (!IsConnected()) return;
string name = Server.ircPlayerTitles ? p.FullName : p.group.prefix + p.ColoredName;