mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
[FIX] Liliana of the Veil's third ability had the player to sacrifice the permanents incorrect. References issue 282
This commit is contained in:
parent
9b19ce56c0
commit
f2a1349252
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue