Changes to the ascii map and minor tweaking

This commit is contained in:
Olof Larsson
2011-10-24 09:28:08 +02:00
parent 1ec7842ed4
commit bb5a676430
9 changed files with 101 additions and 103 deletions

View File

@@ -38,13 +38,13 @@ public class Faction extends Entity implements EconomyParticipator
private String tag;
public String getTag() { return this.tag; }
public String getTag(String prefix) { return prefix+this.tag; }
public String getTag(Faction otherFaction)
public String getTag(RelationParticipator observer)
{
if (otherFaction == null)
if (observer == null)
{
return getTag();
}
return this.getTag(this.getColorTo(otherFaction).toString());
return this.getTag(this.getColorTo(observer).toString());
}
public String getTag(FPlayer otherFplayer) {
if (otherFplayer == null)