Set target player of Balustrade Spy to mandatory.

This commit is contained in:
LevelX2 2013-03-04 08:44:47 +01:00
parent 97031d957e
commit 3819db77ba

View file

@ -65,7 +65,7 @@ public class BalustradeSpy extends CardImpl<BalustradeSpy> {
// 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. // 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 ability = new EntersBattlefieldTriggeredAbility(new BalustradeSpyEffect(), false);
ability.addTarget(new TargetPlayer()); ability.addTarget(new TargetPlayer(true));
this.addAbility(ability); this.addAbility(ability);
} }