mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
fix MB2 playtest card legality (resolves #13090)
This commit is contained in:
parent
efe04f69b0
commit
f06a4c772b
1 changed files with 4 additions and 1 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue