Rename Faction Tag to Faction Name. What did tag ever mean? Name makes more sense.

This commit is contained in:
Olof Larsson
2013-04-24 19:01:17 +02:00
parent 82e380cd3d
commit 5eed71fc67
34 changed files with 156 additions and 166 deletions

View File

@ -24,7 +24,7 @@ public class MiscUtil
return values;
}
/// TODO create tag whitelist!!
/// TODO create name whitelist!!?
public static HashSet<String> substanceChars = new HashSet<String>(Arrays.asList(new String []{
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H",
"I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",

View File

@ -35,7 +35,7 @@ public class RelationUtil
}
else
{
ret = thatFaction.getTag();
ret = thatFaction.getName();
}
}
else if (that instanceof UPlayer)
@ -51,7 +51,7 @@ public class RelationUtil
}
else
{
ret = uplayerthat.getNameAndTag();
ret = uplayerthat.getNameAndFactionName();
}
}