From 919ec4e7b4cf1a1d3e113e307e0ec6987cdb6881 Mon Sep 17 00:00:00 2001 From: PhallenCassidy Date: Thu, 8 Mar 2018 11:39:24 -0500 Subject: [PATCH] Fix to The Hobbit "He Gives Me Courage" No longer allows the Free Peoples to exert a Wise ally if no Wise [Elven] ally can exert --- .../java/com/gempukku/lotro/cards/set30/gandalf/Card30_030.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set30/gandalf/Card30_030.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set30/gandalf/Card30_030.java index 4463edfc7..532e3080b 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set30/gandalf/Card30_030.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set30/gandalf/Card30_030.java @@ -38,7 +38,7 @@ public class Card30_030 extends AbstractEvent { public PlayEventAction getPlayCardAction(final String playerId, LotroGame game, final PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) { final PlayEventAction action = new PlayEventAction(self); if ((PlayConditions.canExert(self, game, Filters.gandalf)) - && (PlayConditions.canExert(self, game, Keyword.WISE, CardType.ALLY))) { + && (PlayConditions.canExert(self, game, Keyword.WISE, Culture.ELVEN, CardType.ALLY))) { action.appendCost( new PlayoutDecisionEffect(playerId, new YesNoDecision("Do you want to exert Gandalf and a Wise ally?") {