* More fixes to the [BOK] cards and mana pool handling.

This commit is contained in:
LevelX2 2014-10-20 21:26:46 +02:00
parent 763023b550
commit 974cb4435b
5 changed files with 5 additions and 9 deletions

View file

@ -93,7 +93,7 @@ public class RevealLibraryPutIntoHandEffect extends OneShotEffect {
Set<Card> cardsList = cards.getCards(game);
for (Card card : cardsList) {
if (filter.match(card, game)) {
card.moveToZone(Zone.HAND, source.getSourceId(), game, true);
player.moveCardToHandWithInfo(card, source.getSourceId(), game, Zone.LIBRARY);
cards.remove(card);
}
}