From 3e4e555a205d65d642389bfa3ff641e8948332fe Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 23 Sep 2017 19:32:41 +0200 Subject: [PATCH] * Nissa Genesis Mage - Fixed that the untapping of the targetted lands of the +2 ability did not work. --- Mage.Sets/src/mage/cards/n/NissaGenesisMage.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/n/NissaGenesisMage.java b/Mage.Sets/src/mage/cards/n/NissaGenesisMage.java index 47029709e53..f06bd347c39 100644 --- a/Mage.Sets/src/mage/cards/n/NissaGenesisMage.java +++ b/Mage.Sets/src/mage/cards/n/NissaGenesisMage.java @@ -37,8 +37,8 @@ import mage.abilities.effects.common.continuous.BoostTargetEffect; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; -import mage.constants.SubType; import mage.constants.Duration; +import mage.constants.SubType; import mage.constants.SuperType; import mage.constants.Zone; import mage.filter.FilterCard; @@ -63,7 +63,7 @@ public class NissaGenesisMage extends CardImpl { this.addAbility(new PlanswalkerEntersWithLoyalityCountersAbility(5)); //+2: Untap up to two target creatures and up to two target lands. - Ability ability = new LoyaltyAbility(new UntapTargetEffect().setText("Untap up to two target creatures and up to two target lands"), +2); + Ability ability = new LoyaltyAbility(new UntapTargetEffect(false).setText("Untap up to two target creatures and up to two target lands"), +2); ability.addTarget(new TargetCreaturePermanent(0, 2, new FilterCreaturePermanent("target creatures"), false)); ability.addTarget(new TargetLandPermanent(0, 2, new FilterLandPermanent("target land"), false)); this.addAbility(ability);