Made SayCommand display output in purple, as per vanilla spec.

This commit is contained in:
EvilSeph
2011-09-15 22:11:20 -04:00
parent 777a17d284
commit 70beef0993

View File

@@ -31,8 +31,8 @@ public class SayCommand extends VanillaCommand {
if (!(sender instanceof ConsoleCommandSender)) {
Bukkit.getLogger().info("[" + sender.getName() + "] " + message);
}
Bukkit.broadcastMessage("[Server] " + message);
Bukkit.broadcastMessage(ChatColor.LIGHT_PURPLE + "[Server] " + message);
return true;
}