Changed name for no faction to wilderness

This commit is contained in:
Olof Larsson 2011-04-08 16:09:08 +02:00
parent 724ce03a40
commit 6e00b16f38
1 changed files with 2 additions and 2 deletions

View File

@ -368,8 +368,8 @@ public class Faction {
// Make sure the default neutral faction exists
if ( ! instances.containsKey(0)) {
Faction faction = new Faction();
faction.tag = "*No faction*";
faction.description = "\"The faction for the factionless :P\"";
faction.tag = ChatColor.DARK_GREEN+"Wilderness";
faction.description = "";
faction.id = 0;
instances.put(faction.id, faction);
}