mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Kiki-Jiki, Mirror Breaker - Fixed missing legendary restriction for copy target.
This commit is contained in:
parent
76ce168436
commit
4eff5355d5
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ import mage.cards.CardImpl;
|
|||
import mage.constants.Outcome;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.filter.predicate.mageobject.SupertypePredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.permanent.token.EmptyToken;
|
||||
|
@ -62,7 +62,7 @@ public class KikiJikiMirrorBreaker extends CardImpl<KikiJikiMirrorBreaker> {
|
|||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("nonlegendary creature you control");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(new SubtypePredicate("Legendary")));
|
||||
filter.add(Predicates.not(new SupertypePredicate("Legendary")));
|
||||
}
|
||||
|
||||
public KikiJikiMirrorBreaker(UUID ownerId) {
|
||||
|
|
Loading…
Reference in a new issue