* Runic Repetition - Fixed that exiled cards not in the default exile window could not be selected as target (fixes #720).

This commit is contained in:
LevelX2 2015-02-15 23:53:35 +01:00
parent dfd46bd94e
commit 2969ea2fac
3 changed files with 15 additions and 5 deletions

View file

@ -56,10 +56,8 @@ public class RunicRepetition extends CardImpl {
super(ownerId, 72, "Runic Repetition", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{2}{U}");
this.expansionSetCode = "ISD";
this.color.setBlue(true);
// Return target exiled card with flashback you own to your hand.
TargetCardInExile target = new TargetCardInExile(filter, null);
TargetCardInExile target = new TargetCardInExile(filter);
this.getSpellAbility().addTarget(target);
this.getSpellAbility().addEffect(new ReturnToHandTargetEffect());
}