mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[NEO] fixed Blossom Prancer not moving card to hand (fixes #8773)
This commit is contained in:
parent
b40bde5e12
commit
bb03ed4e19
1 changed files with 2 additions and 2 deletions
|
@ -89,9 +89,9 @@ class BlossomPrancerEffect extends OneShotEffect {
|
||||||
player.revealCards(source, new CardsImpl(card), game);
|
player.revealCards(source, new CardsImpl(card), game);
|
||||||
player.moveCards(card, Zone.HAND, source, game);
|
player.moveCards(card, Zone.HAND, source, game);
|
||||||
cards.remove(card);
|
cards.remove(card);
|
||||||
player.putCardsOnBottomOfLibrary(card, game, source, false);
|
player.putCardsOnBottomOfLibrary(cards, game, source, false);
|
||||||
} else {
|
} else {
|
||||||
player.putCardsOnBottomOfLibrary(card, game, source, false);
|
player.putCardsOnBottomOfLibrary(cards, game, source, false);
|
||||||
player.gainLife(4, game, source);
|
player.gainLife(4, game, source);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue