updated historic legality implementation

This commit is contained in:
Evan Kranzler 2020-08-15 14:03:11 -04:00
parent fd19a29400
commit 8240e956dc
5 changed files with 9 additions and 7 deletions

View file

@ -48,4 +48,9 @@ public enum SetType {
// any official sets that was in modern (standard + Modern Horizons)
return this.isStandardLegal() || this == SetType.SUPPLEMENTAL_MODERN_LEGAL;
}
public boolean isHistoricLegal() {
// any set made for standard or specifically for arena
return this.isStandardLegal() || this == SetType.MAGIC_ARENA;
}
}