- "Pippin's Pipe" should now allow itself to be played and not cause any trouble with potential game cancelling.

This commit is contained in:
marcins78
2013-03-11 18:22:38 +00:00
parent ce37cabe81
commit 3705790ca2
2 changed files with 3 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ images.
- "Shire-songs" should no longer cause an error and cancel the game.
- "Aragorn, Dunedain Ranger" trigger is now an optional one.
- "Merry, Pipeweed Aficionado" now requires to exert twice to use its ability.
- "Pippin's Pipe" should now allow itself to be played and not cause any trouble with potential game cancelling.
<b>10 Mar. 2013</b>
- Free people cards should no longer allow playing shadow cards and vice-versa.

View File

@@ -5,6 +5,7 @@ import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.ForEachYouSpotEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardCardsFromPlayEffect;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.ActivateCardAction;
@@ -28,7 +29,7 @@ public class Card20_403 extends AbstractAttachableFPPossession {
@Override
protected Filterable getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self) {
return PossessionClass.PIPE;
return Filters.name("Pippin");
}
@Override