From a06f29cba8682bdc01add946b57bf7656a9d0473 Mon Sep 17 00:00:00 2001 From: marcins78 Date: Tue, 20 Aug 2013 14:36:16 +0000 Subject: [PATCH] - "Ring of Accretion" is now discarded, even if you choose to reveal 0 cards. --- gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html | 1 + .../lotro/cards/effects/RevealTopCardsOfDrawDeckEffect.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html index 1b4dc7573..9121149c4 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html @@ -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. 20 Jun. 2013 - "They Sang as They Slew" correctly counts the exerted cards. diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/effects/RevealTopCardsOfDrawDeckEffect.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/effects/RevealTopCardsOfDrawDeckEffect.java index 198f607e2..3b9e2d18c 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/effects/RevealTopCardsOfDrawDeckEffect.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/effects/RevealTopCardsOfDrawDeckEffect.java @@ -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); }