- "Ithilien Wildwood" now makes FP player to wound the companions, not Shadow player.

This commit is contained in:
marcins78
2013-03-12 12:00:04 +00:00
parent 1988e504ae
commit 6c5cd6e76f
2 changed files with 3 additions and 2 deletions

View File

@@ -24,6 +24,7 @@ Lady of Imladris" with completely different text (per card text).
- "The Palantir of Orthanc, Defiler of Wizards" now requires to spot ISENGARD minion to play (per card text).
- "Treachery Runs Deep" now correctly checks the twilight available before being able to play it.
- "Treachery Runs Deep" is no longer a Spell (per card text).
- "Ithilien Wildwood" now makes FP player to wound the companions, not Shadow player.
<b>11 Mar. 2013</b>
- Second Edition is playable now.

View File

@@ -32,7 +32,7 @@ public class Card20_442 extends AbstractSite {
}
@Override
public List<? extends Action> getPhaseActions(final String playerId, LotroGame game, PhysicalCard self) {
public List<? extends Action> getPhaseActions(final String playerId, final LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseSiteDuringPhase(game, Phase.REGROUP, self)
&& GameUtils.isShadow(game, playerId)) {
final ActivateCardAction action = new ActivateCardAction(self);
@@ -43,7 +43,7 @@ public class Card20_442 extends AbstractSite {
int count = cards.size();
if (count > 0)
action.appendEffect(
new ChooseAndWoundCharactersEffect(action, playerId, count, count, CardType.COMPANION));
new ChooseAndWoundCharactersEffect(action, game.getGameState().getCurrentPlayerId(), count, count, CardType.COMPANION));
}
});
return Collections.singletonList(action);