- "At His Command" no longer allows to applied the bonus to a ring-bound companion.

This commit is contained in:
marcins78
2013-08-20 14:28:35 +00:00
parent b3a0b54594
commit dfb7d26b12
2 changed files with 6 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
<b>20 Jul. 2013</b>
- "War and Valor" from Second Edition now applies to Gondor Man, not Gondor Ranger (per card text).
- "Curse Their Foul Feet!" now discards only cards if the hand could be revealed.
- "At His Command" no longer allows to applied the bonus to a ring-bound companion.
<b>20 Jun. 2013</b>
- "They Sang as They Slew" correctly counts the exerted cards.

View File

@@ -6,7 +6,10 @@ import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.cards.modifiers.evaluator.ForEachThreatEvaluator;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.common.Signet;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
@@ -36,7 +39,7 @@ public class Card8_031 extends AbstractEvent {
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Filters.aragorn));
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId, new ForEachThreatEvaluator(), CardType.COMPANION, Signet.ARAGORN));
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId, new ForEachThreatEvaluator(), Filters.unboundCompanion, Signet.ARAGORN));
return action;
}
}