added Method toString in City

This commit is contained in:
schrom01 2021-12-03 10:48:59 +01:00
parent 8cb13ce0a6
commit 8fc77abdd0
1 changed files with 4 additions and 0 deletions

View File

@ -5,4 +5,8 @@ public class City extends Settlement {
public City(Config.Faction faction) { public City(Config.Faction faction) {
super(faction); super(faction);
} }
public String toString() {
return super.getFaction().toString().toUpperCase();
}
} }