diff --git a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/state/GameState.java b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/state/GameState.java index ef2d499ea..bc683fb29 100644 --- a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/state/GameState.java +++ b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/game/state/GameState.java @@ -792,6 +792,10 @@ public class GameState { for (PhysicalCardImpl stackedCard : stackedCards) if (isCardInPlayActive(stackedCard.getStackedOn())) startAffectingStacked(game, stackedCard); + + for (List discardedCards : _discards.values()) + for (PhysicalCardImpl discardedCard : discardedCards) + startAffectingInDiscard(game, discardedCard); } public void reapplyAffectingForCard(LotroGame game, PhysicalCard card) { @@ -811,6 +815,10 @@ public class GameState { for (PhysicalCardImpl stackedCard : stackedCards) if (isCardInPlayActive(stackedCard.getStackedOn())) stopAffectingStacked(stackedCard); + + for (List discardedCards : _discards.values()) + for (PhysicalCardImpl discardedCard : discardedCards) + stopAffectingInDiscard(discardedCard); } private void startAffecting(LotroGame game, PhysicalCard card) { diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html index 932f69b46..aa46171b6 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html @@ -2,7 +2,8 @@ 15 Feb. 2012 - Followers are added to deck builder list of card types. - "Salt from the Shire" is no longer misspelled. -- Followers can now be transferred between companions (i.e. on second and subsequent moves). +- Followers can now be transferred between companions (i.e. on second and subsequent moves). +- Cards in discard (like "Release Them") should now consistently apply their modifiers. 12 Feb. 2012 - "Tower Troll" now exerts itself twice to use the activated ability.