* Elusive Spellfist - Fixed that the can't be block effect did not end on turns end.

This commit is contained in:
LevelX2 2015-03-20 16:56:57 +01:00
parent 5af6b6ca7a
commit d80ba99af9

View file

@ -64,7 +64,7 @@ public class ElusiveSpellfist extends CardImpl {
// Whenever you cast a noncreature spell, Elusive Spellfist gets +1/+0 until end of turn and can't be blocked this turn.
Ability ability = new SpellCastControllerTriggeredAbility(new BoostSourceEffect(1,0,Duration.EndOfTurn), filterNonCreature, false);
Effect effect = new CantBeBlockedSourceEffect();
Effect effect = new CantBeBlockedSourceEffect(Duration.EndOfTurn);
effect.setText("and can't be blocked this turn");
ability.addEffect(effect);
this.addAbility(ability);