mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
updated historic legality implementation
This commit is contained in:
parent
fd19a29400
commit
8240e956dc
5 changed files with 9 additions and 7 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue