diff --git a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/cards/build/BuiltLotroCardBlueprint.java b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/cards/build/BuiltLotroCardBlueprint.java index e93fd9bc1..ab9209556 100644 --- a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/cards/build/BuiltLotroCardBlueprint.java +++ b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/cards/build/BuiltLotroCardBlueprint.java @@ -830,5 +830,9 @@ public class BuiltLotroCardBlueprint implements LotroCardBlueprint { throw new InvalidCardDefinitionException("Site has to have a block defined"); if (siteBlock != null && cardType != CardType.SITE) throw new InvalidCardDefinitionException("Block defined for card, that is not site"); + if (targetFilters != null && keywords != null) { + if (keywords.size() > 1 && keywords.containsKey(Keyword.TALE)) + throw new InvalidCardDefinitionException("Attachment should not have keywords"); + } } }