Fix issue #20 by colouring motd in command

This commit is contained in:
md_5 2012-11-02 09:22:40 +11:00
parent 88babcaea1
commit 9aeb63889f

View File

@ -25,7 +25,7 @@ public class CommandMotd extends Command
newMOTD = newMOTD + s + " ";
}
newMOTD = newMOTD.substring(0, newMOTD.length() - 1);
BungeeCord.instance.config.motd = newMOTD;
BungeeCord.instance.config.motd = ChatColor.translateAlternateColorCodes('&', newMOTD);
}
}
}