forked from External/mage
* Crop Sigil - Fixed that it can't be activated without both a creature and land in the graveyard (fixes #2079 ).
This commit is contained in:
parent
97e44d1000
commit
88d66784df
4 changed files with 19 additions and 21 deletions
|
|
@ -121,7 +121,7 @@ public class Targets extends ArrayList<Target> {
|
|||
}
|
||||
}
|
||||
// it is legal when either there is no target or not all targets are illegal
|
||||
return this.size() == 0 || this.size() != illegalCount;
|
||||
return this.isEmpty() || this.size() != illegalCount;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue