Fix Karn, Living Legacy. Closes #9794

This commit is contained in:
PurpleCrowbar 2023-01-16 01:38:35 +00:00
parent 5759c42811
commit 61b97139ab

View file

@ -92,7 +92,8 @@ class KarnLivingLegacyEffect extends OneShotEffect {
player.moveCards(card, Zone.HAND, source, game);
}
cards.retainZone(Zone.LIBRARY, game);
player.putCardsOnBottomOfLibrary(card, game, source, false);
cards.remove(card);
player.putCardsOnBottomOfLibrary(cards, game, source, false);
return true;
}
}