Merge pull request #41 from rubenpirreram/tests-fix

tests-fix
This commit is contained in:
rubenpirreram
2026-04-23 17:06:13 +02:00
committed by GitHub
19 changed files with 292 additions and 20 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);
}
}