[MH1] fixed Winding Way that it doesn't keep cards

This commit is contained in:
Oleg Agafonov 2019-06-06 21:40:48 +04:00
parent bc95b4efb8
commit 0f3f429a9b

View file

@ -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;