Merge remote-tracking branch 'origin/main'

# Conflicts:
#	src/ch/zhaw/catan/Structure.java
This commit is contained in:
Andrin Fassbind 2021-11-29 16:47:41 +01:00
commit cb9e22ea92
1 changed files with 2 additions and 2 deletions

View File

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