mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-23 12:42:22 -04:00
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:
parent
e2720274d3
commit
5ec756c064
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user