- Cards in discard (like "Release Them") should now consistently apply their modifiers.
This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user