From f0034988fae4f7dcecbeaa91b604a42985d3fca1 Mon Sep 17 00:00:00 2001 From: cg5 Date: Sat, 22 Oct 2016 22:27:58 +0200 Subject: [PATCH] Fix text --- Mage.Sets/src/mage/cards/i/IxidorRealitySculptor.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/i/IxidorRealitySculptor.java b/Mage.Sets/src/mage/cards/i/IxidorRealitySculptor.java index c1812b0687..382202acfe 100644 --- a/Mage.Sets/src/mage/cards/i/IxidorRealitySculptor.java +++ b/Mage.Sets/src/mage/cards/i/IxidorRealitySculptor.java @@ -49,14 +49,16 @@ import mage.target.common.TargetCreaturePermanent; /** * - * @author anonymous + * @author cg5 */ public class IxidorRealitySculptor extends CardImpl { private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Face-down creatures"); + private static final FilterCreaturePermanent filterTarget = new FilterCreaturePermanent("Face-down creature"); static { filter.add(new FaceDownPredicate()); + filterTarget.add(new FaceDownPredicate()); } public IxidorRealitySculptor(UUID ownerId, CardSetInfo setInfo) { @@ -73,7 +75,7 @@ public class IxidorRealitySculptor extends CardImpl { // {2}{U}: Turn target face-down creature face up. Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new TurnFaceUpTargetEffect(), new ManaCostsImpl("{2}{U}")); - ability.addTarget(new TargetCreaturePermanent(filter)); + ability.addTarget(new TargetCreaturePermanent(filterTarget)); this.addAbility(ability); }