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 efed2b096..3dccc4760 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 @@ -31,7 +31,8 @@ - Added "Thrór's Throne" - Added "The Arkenstone, King's Jewel" - "Gwaihir" no longer crashed the game, when it is not attached to anything and has its Skirmish action activated. - +- "Bolg, Servant of Sauron" can now only be used in Maneuver phase. + 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/sauron/Card31_037.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/sauron/Card31_037.java index efe81ba00..48d777a7c 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/sauron/Card31_037.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/sauron/Card31_037.java @@ -59,7 +59,8 @@ public class Card31_037 extends AbstractMinion { @Override protected List getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) { - if (PlayConditions.canSpot(game, Culture.ELVEN, Keyword.ARCHER)) { + if (PlayConditions.canUseFPCardDuringPhase(game, Phase.MANEUVER, self) + && PlayConditions.canSpot(game, Culture.ELVEN, Keyword.ARCHER)) { ActivateCardAction action = new ActivateCardAction(self); action.appendCost( new SpotEffect(1, Culture.ELVEN, Keyword.ARCHER));