From bfd9de863a92c272fddb5954647c229dbd09a780 Mon Sep 17 00:00:00 2001 From: marcins78 Date: Fri, 8 Mar 2013 10:56:53 +0000 Subject: [PATCH] --- .../java/com/gempukku/lotro/cards/set3/wraith/Card3_083.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set3/wraith/Card3_083.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set3/wraith/Card3_083.java index 2fe20ab42..7d184ddce 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set3/wraith/Card3_083.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set3/wraith/Card3_083.java @@ -5,6 +5,7 @@ import com.gempukku.lotro.cards.TriggerConditions; import com.gempukku.lotro.cards.effects.ChoiceEffect; import com.gempukku.lotro.cards.effects.SelfDiscardEffect; import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect; +import com.gempukku.lotro.cards.modifiers.evaluator.ForEachBurdenEvaluator; import com.gempukku.lotro.common.*; import com.gempukku.lotro.game.PhysicalCard; import com.gempukku.lotro.game.state.LotroGame; @@ -34,10 +35,9 @@ public class Card3_083 extends AbstractPermanent { @Override public List getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) { if (TriggerConditions.moves(game, effectResult)) { - int burdens = game.getGameState().getBurdens(); RequiredTriggerAction action = new RequiredTriggerAction(self); action.appendEffect( - new AddTwilightEffect(self, burdens)); + new AddTwilightEffect(self, new ForEachBurdenEvaluator())); return Collections.singletonList(action); } if (TriggerConditions.endOfPhase(game, effectResult, Phase.SHADOW)) {