* Stone-Seeder Hierophant - Fixed that the triggered ability did also trigger for not controlled lands.

This commit is contained in:
LevelX2 2015-08-10 09:35:55 +02:00
parent cbe49333bb
commit ea564803a2

View file

@ -58,8 +58,8 @@ public class StoneSeederHierophant extends CardImpl {
this.toughness = new MageInt(1);
// Whenever a land enters the battlefield under your control, untap Stone-Seeder Hierophant.
this.addAbility(new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, new UntapSourceEffect(), new FilterLandPermanent("a land"), false));
this.addAbility(new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, new UntapSourceEffect(), new FilterLandPermanent("a land"), false, null, true));
// {tap}: Untap target land.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new UntapTargetEffect(), new TapSourceCost());
Target target = new TargetLandPermanent();