- Cards in discard (like "Release Them") should now consistently apply their modifiers.

This commit is contained in:
marcins78@gmail.com
2012-02-15 08:48:56 +00:00
parent 799490e9b6
commit 24af8fc032
2 changed files with 10 additions and 1 deletions

View File

@@ -792,6 +792,10 @@ public class GameState {
for (PhysicalCardImpl stackedCard : stackedCards)
if (isCardInPlayActive(stackedCard.getStackedOn()))
startAffectingStacked(game, stackedCard);
for (List<PhysicalCardImpl> 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<PhysicalCardImpl> discardedCards : _discards.values())
for (PhysicalCardImpl discardedCard : discardedCards)
stopAffectingInDiscard(discardedCard);
}
private void startAffecting(LotroGame game, PhysicalCard card) {

View File

@@ -2,7 +2,8 @@
<b>15 Feb. 2012</b>
- 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.
<b>12 Feb. 2012</b>
- "Tower Troll" now exerts itself twice to use the activated ability.