diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set2/moria/Card2_055.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set2/moria/Card2_055.java index 46206fd5d..d57090fab 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set2/moria/Card2_055.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set2/moria/Card2_055.java @@ -52,11 +52,9 @@ public class Card2_055 extends AbstractPermanent { @Override protected void cardSelected(LotroGame game, PhysicalCard card) { int siteNumber = card.getBlueprint().getSiteNumber(); - if (Filters.filter(game.getGameState().getAdventureDeck(playerId), game.getGameState(), game.getModifiersQuerying(), Filters.siteNumber(siteNumber), Filters.or(Keyword.MARSH, Keyword.UNDERGROUND)).size() > 0) { - ActivateCardAction action = new ActivateCardAction(self); - action.appendEffect( - new PlaySiteEffect(playerId, Block.FELLOWSHIP, siteNumber)); - } + ActivateCardAction action = new ActivateCardAction(self); + action.appendEffect( + new PlaySiteEffect(playerId, Block.FELLOWSHIP, siteNumber, Filters.or(Keyword.MARSH, Keyword.UNDERGROUND))); } }); return Collections.singletonList(action);