From 0f20b272a9de0f2af98b712db6c1c78fe95a949d Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Mon, 25 Dec 2017 15:11:16 +1100 Subject: [PATCH] fix colours not showing in MOTD. (Thanks xnotx123) --- MCGalaxy/Network/Player.Networking.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Network/Player.Networking.cs b/MCGalaxy/Network/Player.Networking.cs index b182fedc8..36a2a097e 100644 --- a/MCGalaxy/Network/Player.Networking.cs +++ b/MCGalaxy/Network/Player.Networking.cs @@ -160,7 +160,7 @@ namespace MCGalaxy { public void SendMapMotd() { string motd = level.GetMotd(this); - motd = ChatTokens.Apply(motd, this); + motd = Chat.Format(motd, this); byte[] packet = Packet.Motd(this, motd); OnSendingMotdEvent.Call(this, packet);