- "Ring of Accretion" is now discarded, even if you choose to reveal 0 cards.

This commit is contained in:
marcins78
2013-08-20 14:36:16 +00:00
parent 6c2d59924d
commit a06f29cba8
2 changed files with 2 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
- "At His Command" no longer allows to applied the bonus to a ring-bound companion.
- "Pathfinder" and "Follow Smeagol" no longer allow to replace your own site.
- "Gimli, Sprinter" now wounds hunter minion twice.
- "Ring of Accretion" is now discarded, even if you choose to reveal 0 cards.
<b>20 Jun. 2013</b>
- "They Sang as They Slew" correctly counts the exerted cards.

View File

@@ -45,8 +45,8 @@ public abstract class RevealTopCardsOfDrawDeckEffect extends AbstractEffect {
game.getGameState().sendMessage(GameUtils.getCardLink(_source) + " revealed cards from top of " + _playerId + " deck - " + getAppendedNames(topCards));
game.getActionsEnvironment().emitEffectResult(
new RevealCardFromTopOfDeckResult(_playerId, topCards));
cardsRevealed(topCards);
}
cardsRevealed(topCards);
return new FullEffectResult(topCards.size() == _count);
}