- "Dunlending Ravager" now doesn't highlight when there is no allies to spot.

This commit is contained in:
marcins78@gmail.com
2012-01-16 00:41:08 +00:00
parent 66c03a44bf
commit 9adc6dfbda
2 changed files with 3 additions and 1 deletions

View File

@@ -49,7 +49,8 @@ public class Card4_015 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));

View File

@@ -2,6 +2,7 @@
<b>15 Jan. 2012</b>
- "Hobbit Farmer" and other allies copying site text should now be able to activate the site phase actions.
- "Easterling Banner-bearer" should have his strength correctly calculated.
- "Dunlending Ravager" now doesn't highlight when there is no allies to spot.
<b>14 Jan. 2012</b>
- "Refuge" now discards companion from hand, rather than condition to heal a companion.