1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-18 17:53:00 +01:00

Fix for ezModo not working and changed brackets in chat to be White again for now.

This commit is contained in:
nossr50
2010-12-30 04:32:41 -08:00
parent b2711e4328
commit 1388780143
2 changed files with 8 additions and 4 deletions

View File

@@ -459,8 +459,8 @@ public class vMinecraftChat {
public static boolean quote(Player player, String message)
{
//Format the name
String playerName = player.getColor() + "<" + getName(player)
+ player.getColor() + "> ";
String playerName = Colors.White + "<" + getName(player)
+ Colors.White + "> ";
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 = player.getColor() + "<"
+ getName(player) + player.getColor() +"> ";
String playerName = Colors.White + "<"
+ getName(player) + Colors.White +"> ";
if(vMinecraftSettings.getInstance().quakeColors()) {
String color = vMinecraftUsers.getProfile(player).getColor();