* Mindsparker - Fixed that the ability did not trigger for the correct card types and colors.

This commit is contained in:
LevelX2 2013-07-24 19:02:50 +02:00
parent 235d314104
commit 14bf4c8d33
2 changed files with 12 additions and 12 deletions

View file

@ -76,7 +76,7 @@ public class Mindsparker extends CardImpl<Mindsparker> {
this.addAbility(FirstStrikeAbility.getInstance());
// Whenever an opponent casts a white or blue instant or sorcery spell, Mindsparker deals 2 damage to that player.
this.addAbility(new OpponentCastsSpellTriggeredAbility(Zone.BATTLEFIELD, new MindsparkerEffect(), filter, false));
this.addAbility(new OpponentCastsSpellTriggeredAbility(Zone.BATTLEFIELD, new MindsparkerEffect(), filter, false, true));
}
@ -115,4 +115,4 @@ class MindsparkerEffect extends OneShotEffect<MindsparkerEffect> {
}
return false;
}
}
}