From 6c5cd6e76fedccb446ce34b2e9fb4093d3374719 Mon Sep 17 00:00:00 2001 From: marcins78 Date: Tue, 12 Mar 2013 12:00:04 +0000 Subject: [PATCH] - "Ithilien Wildwood" now makes FP player to wound the companions, not Shadow player. --- .../gemp-lotr-async/src/main/web/includes/changeLog.html | 1 + .../java/com/gempukku/lotro/cards/set20/site/Card20_442.java | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html index 7cb4a14e9..b4bd4e989 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html @@ -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. 11 Mar. 2013 - Second Edition is playable now. diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/site/Card20_442.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/site/Card20_442.java index 0b500f2da..e414121e5 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/site/Card20_442.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/site/Card20_442.java @@ -32,7 +32,7 @@ public class Card20_442 extends AbstractSite { } @Override - public List getPhaseActions(final String playerId, LotroGame game, PhysicalCard self) { + public List 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);