diff --git a/vMinecraftChat.java b/vMinecraftChat.java index fa7e9e32b..c1d029a6f 100644 --- a/vMinecraftChat.java +++ b/vMinecraftChat.java @@ -459,8 +459,8 @@ public class vMinecraftChat { public static boolean quote(Player player, String message) { //Format the name - String playerName = Colors.White + "<" + getName(player) - + Colors.White + "> "; + String playerName = player.getColor() + "<" + getName(player) + + player.getColor() + "> "; if(vMinecraftSettings.getInstance().greentext()) { //Log the chat log.log(Level.INFO, "<"+player.getName()+"> " + message); @@ -504,8 +504,8 @@ public class vMinecraftChat { public static boolean quakeColors(Player player, String message) { //Format the name - String playerName = Colors.White + "<" - + getName(player) + Colors.White +"> "; + String playerName = player.getColor() + "<" + + getName(player) + player.getColor() +"> "; if(vMinecraftSettings.getInstance().quakeColors()) { String color = vMinecraftUsers.getProfile(player).getColor();