diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set4/dunland/Card4_018.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set4/dunland/Card4_018.java index 71e1975b9..74fc0ee94 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set4/dunland/Card4_018.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set4/dunland/Card4_018.java @@ -34,7 +34,8 @@ public class Card4_018 extends AbstractMinion { @Override protected List extends Action> getExtraPhaseActions(final String playerId, LotroGame game, final PhysicalCard self) { - if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.ASSIGNMENT, self, 0)) { + if (PlayConditions.canUseShadowCardDuringPhase(game, Phase.ASSIGNMENT, self, 0) + && PlayConditions.canSpot(game, CardType.ALLY)) { final ActivateCardAction action = new ActivateCardAction(self); action.appendEffect( new ChooseAndAssignCharacterToMinionEffect(action, playerId, self, true, CardType.ALLY)); 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 5e9532bc9..91d53bb23 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 @@
+21 Dec. 2012 +- "Dunlending Warrior" cannot be activated now, if you can't spot a follower. + 19 Dec. 2012 - Merchant logic was switched to one based on stock. If it has no specific card, it won't be able to sell it, until it acquires a copy from another player. Once stock reaches specified number, it will stop buying the card.