* Take Down - Fixed that the first mode could also target creatures without flying.

This commit is contained in:
LevelX2 2016-09-18 18:04:50 +02:00
parent 332586e5b8
commit 03f14a0e2f

View file

@ -58,7 +58,7 @@ public class TakeDown extends CardImpl {
// Choose one
// Take Down deals 4 damage to target creature with flying.
this.getSpellAbility().addEffect(new DamageTargetEffect(4));
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
// Take Down deals 1 damage to each creature with flying
Mode mode = new Mode();