From f2a13492526bebc5af3319b86ff847a38de419d2 Mon Sep 17 00:00:00 2001 From: "maurer.it" Date: Sun, 16 Oct 2011 19:27:33 -0400 Subject: [PATCH] [FIX] Liliana of the Veil's third ability had the player to sacrifice the permanents incorrect. References issue 282 --- Mage.Sets/src/mage/sets/innistrad/LilianaOfTheVeil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/innistrad/LilianaOfTheVeil.java b/Mage.Sets/src/mage/sets/innistrad/LilianaOfTheVeil.java index 0f7770e4c88..ac697cb81d2 100644 --- a/Mage.Sets/src/mage/sets/innistrad/LilianaOfTheVeil.java +++ b/Mage.Sets/src/mage/sets/innistrad/LilianaOfTheVeil.java @@ -135,7 +135,7 @@ class LilianaOfTheVeilEffect extends OneShotEffect { player.revealCards("Pile 2 (Liliana of the Veil)", 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")) { sacrificePermanents(pile1, game, source); } else {