Fixed display error toString in structure
This commit is contained in:
parent
3ddd86e4e1
commit
cf94a835fc
|
@ -6,4 +6,8 @@ public abstract class Structure {
|
|||
public Structure(Config.Faction faction) {
|
||||
this.faction = faction;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return faction.toString();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue