diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set5/elven/Card5_014.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set5/elven/Card5_014.java index 9b6b2a5f0..098642a33 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set5/elven/Card5_014.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set5/elven/Card5_014.java @@ -3,16 +3,11 @@ package com.gempukku.lotro.cards.set5.elven; import com.gempukku.lotro.cards.AbstractEvent; import com.gempukku.lotro.cards.PlayConditions; import com.gempukku.lotro.cards.actions.PlayEventAction; -import com.gempukku.lotro.cards.effects.ChoiceEffect; import com.gempukku.lotro.cards.effects.LiberateASiteEffect; import com.gempukku.lotro.common.*; import com.gempukku.lotro.game.PhysicalCard; import com.gempukku.lotro.game.state.LotroGame; import com.gempukku.lotro.logic.effects.ChooseAndHealCharactersEffect; -import com.gempukku.lotro.logic.timing.Effect; - -import java.util.LinkedList; -import java.util.List; /** * Set: Battle of Helm's Deep @@ -36,19 +31,15 @@ public class Card5_014 extends AbstractEvent { @Override public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) { PlayEventAction action = new PlayEventAction(self); - List possibleEffects = new LinkedList(); - possibleEffects.add( + action.appendEffect( new ChooseAndHealCharactersEffect(action, playerId, 1, 1, CardType.COMPANION) { @Override public String getText(LotroGame game) { return "Heal a companion"; } }); - possibleEffects.add( - new LiberateASiteEffect(self)); - action.appendEffect( - new ChoiceEffect(action, playerId, possibleEffects)); + new LiberateASiteEffect(self)); return action; } } diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html index 68239395d..6990b0ea7 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/includes/changeLog.html @@ -1,4 +1,7 @@
+9 Aug. 2012
+- "That Is No Orc Horn" is now allowing to heal a companion and liberate a site, rather than one of the effects.
+
 1 Aug. 2012
 - "Gorbag's Sword" now gives the option to put the possession on top of the deck to the owner of the card.