Fix for nonworking war zone and safe zone renaming

This commit is contained in:
Brettflan 2011-10-23 09:11:37 -05:00
parent 3e8faad156
commit 2e34079a8e
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ public class Factions extends EntityCollection<Faction>
{
// 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<Faction>
{
// 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");
}