Fixed display error toString in structure

This commit is contained in:
MikeZyeman 2021-11-29 16:39:29 +01:00
parent 3ddd86e4e1
commit cf94a835fc
1 changed files with 4 additions and 0 deletions

View File

@ -6,4 +6,8 @@ public abstract class Structure {
public Structure(Config.Faction faction) { public Structure(Config.Faction faction) {
this.faction = faction; this.faction = faction;
} }
public String toString() {
return faction.toString();
}
} }