From 3819db77ba93da79c60a3e9d95d5d7daad1c8b66 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 4 Mar 2013 08:44:47 +0100 Subject: [PATCH] Set target player of Balustrade Spy to mandatory. --- Mage.Sets/src/mage/sets/gatecrash/BalustradeSpy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/gatecrash/BalustradeSpy.java b/Mage.Sets/src/mage/sets/gatecrash/BalustradeSpy.java index d93727eeb5..91f01c9910 100644 --- a/Mage.Sets/src/mage/sets/gatecrash/BalustradeSpy.java +++ b/Mage.Sets/src/mage/sets/gatecrash/BalustradeSpy.java @@ -65,7 +65,7 @@ public class BalustradeSpy extends CardImpl { // When Balustrade Spy enters the battlefield, target player reveals cards from the top of his or her library until he or she reveals a land card, then puts those cards into his or her graveyard. Ability ability = new EntersBattlefieldTriggeredAbility(new BalustradeSpyEffect(), false); - ability.addTarget(new TargetPlayer()); + ability.addTarget(new TargetPlayer(true)); this.addAbility(ability); }