Fix first character not showing up in MOTD. (Thanks goodlyay)

This commit is contained in:
UnknownShadow200 2016-03-03 16:24:26 +11:00
parent c9fe3d4a87
commit 738a970778

View File

@ -285,7 +285,7 @@ namespace MCGalaxy {
else
NetUtils.WriteAscii(Server.motd, buffer, 66);
} else {
NetUtils.WriteAscii(level.motd, buffer, 1);
NetUtils.WriteAscii(level.motd, buffer, 2);
if (level.motd.Length > 64)
NetUtils.WriteAscii(level.motd.Substring(64), buffer, 66);
}