Fixed: compilation errors

Added: line coverage improved
This commit is contained in:
2026-04-21 17:19:07 +02:00
parent 3a39676819
commit 5e5c4327f2
14 changed files with 185 additions and 6 deletions
@@ -62,7 +62,7 @@ public abstract class EventCard extends TribeCard {
*/
@Override
public String toString() {
return super.toString()+" "+type.toString();
return super.toString()+", "+type.toString();
}
/**
@@ -70,4 +70,5 @@ public class Hunt extends EventCard {
public EventCard clone() {
return new Hunt(getEra(), prestigeMultiplier);
}
}