From 95494d4be842aab1db566cbaf7586fcd2fca433e Mon Sep 17 00:00:00 2001 From: marcins78 Date: Fri, 15 Mar 2013 17:25:17 +0000 Subject: [PATCH] - "Lothlorien" correctly requires to spot 2 elves, instead of just one to remove the burden. --- gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html | 3 +++ .../java/com/gempukku/lotro/cards/set20/site/Card20_433.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html index d1a3364ed..e188ca95a 100644 --- a/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html +++ b/gemp-lotr/gemp-lotr-async/src/main/web/includes/changeLog.html @@ -1,4 +1,7 @@
+15 Mar. 2013
+- "Lothlorien" correctly requires to spot 2 elves, instead of just one to remove the burden.
+
 14 Mar. 2013
 - "Into the Wild" now increases site number only based on sites in current region (per card text).
 - "To Whatever End" is now a Skirmish event, instead of Regroup event (per card text).
diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/site/Card20_433.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/site/Card20_433.java
index 1390ec209..9dca85d69 100644
--- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/site/Card20_433.java
+++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/site/Card20_433.java
@@ -33,7 +33,7 @@ public class Card20_433 extends AbstractSite {
     public List getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
         if (TriggerConditions.movesTo(game, effectResult, self)
                 && GameUtils.isFP(game, playerId)
-                && PlayConditions.canSpot(game, Race.ELF)) {
+                && PlayConditions.canSpot(game, 2, Race.ELF)) {
             OptionalTriggerAction action = new OptionalTriggerAction(self);
             action.appendEffect(
                     new RemoveBurdenEffect(playerId, self, 1));