Fixed Duskborne Skymarcher targeting non-attackers

This commit is contained in:
Evan Kranzler 2017-09-17 09:02:00 -04:00
parent 60f7b5bcbf
commit cab5919203

View file

@ -71,7 +71,7 @@ public class DuskborneSkymarcher extends CardImpl {
// {W}, {T}: Target attacking vampire gets +1/+1 until end of turn.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostTargetEffect(1, 1, Duration.EndOfTurn), new ManaCostsImpl("{W}"));
ability.addCost(new TapSourceCost());
ability.addTarget(new TargetCreaturePermanent());
ability.addTarget(new TargetCreaturePermanent(filter));
this.addAbility(ability);
}