From 8bbd13d752ecc45cc2282bc9a89dfe2184fc63f1 Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Sat, 10 Mar 2012 17:09:35 +0000 Subject: [PATCH] - "Asfaloth" no longer discard itself when attached to Ally and fellowship is at an Underground site. --- .../java/com/gempukku/lotro/cards/set1/elven/Card1_031.java | 3 ++- .../gemp-lotr-web/src/main/webapp/includes/changeLog.html | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/elven/Card1_031.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/elven/Card1_031.java index 477fd5705..6520c39c9 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/elven/Card1_031.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/elven/Card1_031.java @@ -54,7 +54,8 @@ public class Card1_031 extends AbstractAttachableFPPossession { @Override public List getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) { - if (PlayConditions.location(game, Keyword.UNDERGROUND)) { + if (PlayConditions.canSpot(game, Filters.hasAttached(self), CardType.COMPANION) + && PlayConditions.location(game, Keyword.UNDERGROUND)) { RequiredTriggerAction action = new RequiredTriggerAction(self); action.appendEffect(new SelfDiscardEffect(self)); return Collections.singletonList(action); 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 e657406fb..543643701 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,8 @@
+9 Mar. 2012
+- "Asfaloth" no longer discard itself when attached to Ally and fellowship is at an Underground site.
+- Added all the missing booster packs and rarity for all cards.
+
 9 Mar. 2012
 - When a card stacks cards from discard, it does it now correctly if the number of cards in discard is exactly the same
 as it has to stack (if no selection is needed).