remove arena only cards from eternal formats

This commit is contained in:
Evan Kranzler 2021-08-06 17:15:54 -04:00
parent 985c90c484
commit 51c054b286

View file

@ -36,7 +36,7 @@ public enum SetType {
public boolean isEternalLegal() {
// any official sets except un-sets
return this != SetType.CUSTOM_SET && this != SetType.JOKESET;
return this != SetType.CUSTOM_SET && this != SetType.JOKESET && this != SetType.MAGIC_ARENA;
}
public boolean isStandardLegal() {