- Fixed a problem, where "Horn of Helm" could be played in every phase from hand.

This commit is contained in:
marcins78@gmail.com
2012-02-02 11:48:53 +00:00
parent 95ba4f294e
commit 0ea17a641a
2 changed files with 4 additions and 2 deletions

View File

@@ -31,7 +31,8 @@ public class Card5_008 extends AbstractPermanent {
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canExert(self, game, Race.DWARF, CardType.COMPANION)) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.MANEUVER, self)
&& PlayConditions.canExert(self, game, Race.DWARF, CardType.COMPANION)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Race.DWARF, CardType.COMPANION));

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>1 Feb. 2012</b>
<b>2 Feb. 2012</b>
- "Iron Fist of the Orc" now can be activated in Regroup phase, rather than in Shadow phase.
- Fixed a problem, where "Horn of Helm" could be played in every phase from hand.
<b>1 Feb. 2012</b>
- Stacked cards and cards in discard affect game ONLY when their side (Shadow/FP) matches their owner's current role.