diff --git a/Mage.Sets/src/mage/sets/betrayersofkamigawa/InTheWebOfWar.java b/Mage.Sets/src/mage/sets/betrayersofkamigawa/InTheWebOfWar.java index 9af5afc8e2..8c65219e5f 100644 --- a/Mage.Sets/src/mage/sets/betrayersofkamigawa/InTheWebOfWar.java +++ b/Mage.Sets/src/mage/sets/betrayersofkamigawa/InTheWebOfWar.java @@ -38,6 +38,7 @@ import mage.cards.CardImpl; import mage.constants.CardType; import mage.constants.Duration; import mage.constants.Rarity; +import mage.constants.SetTargetPointer; import mage.constants.Zone; import mage.filter.common.FilterCreaturePermanent; @@ -58,7 +59,7 @@ public class InTheWebOfWar extends CardImpl { // Whenever a creature enters the battlefield under your control, it gets +2/+0 and gains haste until end of turn. Effect effect = new BoostTargetEffect(2,0, Duration.EndOfTurn); effect.setText("it gets +2/+0"); - Ability ability = new EntersBattlefieldControlledTriggeredAbility(Zone.BATTLEFIELD, effect, filter, false, true, null); + Ability ability = new EntersBattlefieldControlledTriggeredAbility(Zone.BATTLEFIELD, effect, filter, false, SetTargetPointer.PERMANENT, null); effect = new GainAbilityTargetEffect(HasteAbility.getInstance(), Duration.EndOfTurn); effect.setText("and gains haste until end of turn"); ability.addEffect(effect); diff --git a/Mage.Sets/src/mage/sets/futuresight/SwordOfTheMeek.java b/Mage.Sets/src/mage/sets/futuresight/SwordOfTheMeek.java index ed0ca6d156..914a711d9f 100644 --- a/Mage.Sets/src/mage/sets/futuresight/SwordOfTheMeek.java +++ b/Mage.Sets/src/mage/sets/futuresight/SwordOfTheMeek.java @@ -41,6 +41,7 @@ import mage.constants.CardType; import mage.constants.Duration; import mage.constants.Outcome; import mage.constants.Rarity; +import mage.constants.SetTargetPointer; import mage.constants.Zone; import mage.filter.Filter; import mage.filter.common.FilterCreaturePermanent; @@ -73,7 +74,7 @@ public class SwordOfTheMeek extends CardImpl { // Equip {2} this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(2))); // Whenever a 1/1 creature enters the battlefield under your control, you may return Sword of the Meek from your graveyard to the battlefield, then attach it to that creature. - this.addAbility(new EntersBattlefieldControlledTriggeredAbility(Zone.GRAVEYARD, new SwordOfTheMeekEffect(), filter, true, true, "")); + this.addAbility(new EntersBattlefieldControlledTriggeredAbility(Zone.GRAVEYARD, new SwordOfTheMeekEffect(), filter, true, SetTargetPointer.PERMANENT, "")); } public SwordOfTheMeek(final SwordOfTheMeek card) { diff --git a/Mage.Sets/src/mage/sets/morningtide/CreamOfTheCrop.java b/Mage.Sets/src/mage/sets/morningtide/CreamOfTheCrop.java index 688b27cc04..6e34491fb9 100644 --- a/Mage.Sets/src/mage/sets/morningtide/CreamOfTheCrop.java +++ b/Mage.Sets/src/mage/sets/morningtide/CreamOfTheCrop.java @@ -38,6 +38,7 @@ import mage.cards.CardsImpl; import mage.constants.CardType; import mage.constants.Outcome; import mage.constants.Rarity; +import mage.constants.SetTargetPointer; import mage.constants.Zone; import mage.filter.FilterCard; import mage.filter.common.FilterCreaturePermanent; @@ -61,11 +62,8 @@ public class CreamOfTheCrop extends CardImpl { // Whenever a creature enters the battlefield under your control, you may look at the top X cards of your library, where X is that creature's power. If you do, put one of those cards on top of your library and the rest on the bottom of your library in any order. this.addAbility(new EntersBattlefieldControlledTriggeredAbility( - Zone.BATTLEFIELD, - new CreamOfTheCropEffect(), - new FilterCreaturePermanent(), - true, - true, + Zone.BATTLEFIELD, new CreamOfTheCropEffect(), + new FilterCreaturePermanent(), true, SetTargetPointer.PERMANENT, "Whenever a creature enters the battlefield under your control, you may look at the top X cards of your library, where X is that creature's power. If you do, put one of those cards on top of your library and the rest on the bottom of your library in any order")); }