Fixed display error toString in structure

This commit is contained in:
MikeZyeman
2021-11-29 16:39:29 +01:00
parent 3ddd86e4e1
commit cf94a835fc
+4
View File
@@ -6,4 +6,8 @@ public abstract class Structure {
public Structure(Config.Faction faction) {
this.faction = faction;
}
public String toString() {
return faction.toString();
}
}