fix MB2 playtest card legality (resolves #13090)

This commit is contained in:
xenohedron 2024-11-30 20:25:47 -05:00
parent efe04f69b0
commit f06a4c772b

View file

@ -37,7 +37,10 @@ public enum SetType {
public boolean isEternalLegal() {
// any official sets except un-sets
return this != SetType.CUSTOM_SET && this != SetType.JOKE_SET && this != SetType.MAGIC_ARENA;
return this != SetType.CUSTOM_SET
&& this != SetType.JOKE_SET
&& this != SetType.REMIX // to exclude MB2 playtest cards
&& this != SetType.MAGIC_ARENA;
}
public boolean isStandardLegal() {