[FIX] Liliana of the Veil's third ability had the player to sacrifice the permanents incorrect. References issue 282

This commit is contained in:
maurer.it 2011-10-16 19:27:33 -04:00
parent 9b19ce56c0
commit f2a1349252

View file

@ -135,7 +135,7 @@ class LilianaOfTheVeilEffect extends OneShotEffect<LilianaOfTheVeilEffect> {
player.revealCards("Pile 2 (Liliana of the Veil)", cards, game); player.revealCards("Pile 2 (Liliana of the Veil)", cards, game);
Choice choice = createChoice(pile1, cards, game); Choice choice = createChoice(pile1, cards, game);
if (player.choose(Outcome.Neutral, choice, game)) { if (targetPlayer.choose(Outcome.Neutral, choice, game)) {
if (choice.getChoice().startsWith("Pile 1")) { if (choice.getChoice().startsWith("Pile 1")) {
sacrificePermanents(pile1, game, source); sacrificePermanents(pile1, game, source);
} else { } else {