mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
[MH1] fixed Winding Way that it doesn't keep cards
This commit is contained in:
parent
bc95b4efb8
commit
0f3f429a9b
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ class WindingWayEffect extends OneShotEffect {
|
|||
Cards cards = new CardsImpl(player.getLibrary().getTopCards(game, 4));
|
||||
player.revealCards(source, cards, game);
|
||||
Cards cardsToKeep = new CardsImpl(cards.getCards(filter, game));
|
||||
cards.remove(cardsToKeep);
|
||||
cards.removeAll(cardsToKeep);
|
||||
player.moveCards(cardsToKeep, Zone.HAND, source, game);
|
||||
player.moveCards(cards, Zone.GRAVEYARD, source, game);
|
||||
return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue