- Fixed Vizkopa Confessor with X=0.

This commit is contained in:
Sloth
2013-07-28 22:31:22 +00:00
parent 57c7e32361
commit af89ddf40e

View File

@@ -88,8 +88,13 @@ public class ChooseCardEffect extends SpellAbilityEffect {
}
}
} else {
chosen.addAll(p.getController().chooseCardsForEffect(choices, sa, sa.hasParam("ChoiceTitle") ?
sa.getParam("ChoiceTitle") : "Choose a card ", validAmount, !sa.hasParam("Mandatory")));
final List<Card> choice = p.getController().chooseCardsForEffect(choices, sa, sa.hasParam("ChoiceTitle") ?
sa.getParam("ChoiceTitle") : "Choose a card ", validAmount, !sa.hasParam("Mandatory"));
for (Card c : choice) {
if (c != null) {
chosen.add(c);
}
}
}
}
}