diff --git a/src/com/massivecraft/factions/Factions.java b/src/com/massivecraft/factions/Factions.java index 5da9ba0d..5fdd705e 100644 --- a/src/com/massivecraft/factions/Factions.java +++ b/src/com/massivecraft/factions/Factions.java @@ -62,7 +62,7 @@ public class Factions extends EntityCollection { // if SafeZone has old pre-1.6.0 name, rename it to remove troublesome " " Faction faction = this.getSafeZone(); - if (faction.getTag().equals("Safe Zone")) + if (faction.getTag().equals(ChatColor.GOLD+"Safe Zone")) faction.setTag("SafeZone"); } @@ -77,7 +77,7 @@ public class Factions extends EntityCollection { // if WarZone has old pre-1.6.0 name, rename it to remove troublesome " " Faction faction = this.getWarZone(); - if (faction.getTag().equals("War Zone")) + if (faction.getTag().equals(ChatColor.DARK_RED+"War Zone")) faction.setTag("WarZone"); }