From 2181588b55147027ed769ac8fb2faa608d2e72c9 Mon Sep 17 00:00:00 2001 From: "marcin.sciesinski" Date: Mon, 13 Nov 2017 18:55:31 -0800 Subject: [PATCH] - "The Evil Becomes Stronger" now correctly allows to spot only ELVEN archer allies, not just any allies. --- .../gemp-lotr-async/src/main/web/includes/changeLog.html | 1 + .../com/gempukku/lotro/cards/set31/elven/Card31_011.java | 6 +++--- 2 files changed, 4 insertions(+), 3 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 4b2f6762c..f0d4f4512 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 @@ -36,6 +36,7 @@ - "Crazy Cob" can now also play minions when Orcs are killed. - "Great Barricade" now allows to exert only companions, and doesn't crash the game, if there is a Dwarf follower present. - "Ancestral Knowledge" no longer crashes the game, when a Dwarf follower is present. +- "The Evil Becomes Stronger" now correctly allows to spot only ELVEN archer allies, not just any allies. 17 Dec. 2015 - "Armor of Khazad" no longer allows to return itself from discard and can now be transferred. diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/elven/Card31_011.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/elven/Card31_011.java index 1b9180a75..28147cd53 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/elven/Card31_011.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/elven/Card31_011.java @@ -41,10 +41,10 @@ public class Card31_011 extends AbstractEvent { @Override public PlayEventAction getPlayCardAction(final String playerId, LotroGame game, final PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) { - if (Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), CardType.ALLY)) { + if (Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), Culture.ELVEN, Keyword.ARCHER, CardType.ALLY)) { final PlayEventAction action = new PlayEventAction(self); action.appendEffect( - new ChooseActiveCardEffect(self, playerId, "Choose an Ally", CardType.ALLY) { + new ChooseActiveCardEffect(self, playerId, "Choose an Ally", Culture.ELVEN, Keyword.ARCHER, CardType.ALLY) { @Override protected void cardSelected(LotroGame game, PhysicalCard card) { action.insertEffect( @@ -52,7 +52,7 @@ public class Card31_011 extends AbstractEvent { new StrengthModifier(self, Filters.sameCard(card), 2), Phase.REGROUP)); action.insertEffect( new AddUntilStartOfPhaseModifierEffect( - new AllyParticipatesInArcheryFireAndSkirmishesModifier(self, Filters.sameCard(card)), Phase.REGROUP)); + new AllyParticipatesInArcheryFireAndSkirmishesModifier(self, card), Phase.REGROUP)); } }); action.appendEffect(