* Vendilion Clique - Allow to select no card so target player does not discard nor draw a card.

This commit is contained in:
LevelX2 2014-06-18 17:22:40 +02:00
parent 889fd417b2
commit 8413be3b55

View file

@ -101,6 +101,7 @@ class VendilionCliqueEffect extends OneShotEffect {
Player sourcePlayer = game.getPlayer(source.getControllerId());
if (player != null && sourcePlayer != null) {
TargetCard targetCard = new TargetCard(Zone.ALL, new FilterNonlandCard());
targetCard.setRequired(false);
if (sourcePlayer.choose(Outcome.Discard, player.getHand(), targetCard, game)) {
Card c = game.getCard(targetCard.getFirstTarget());
if (c != null) {