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 f5204203f..d6a7ca25d 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,8 @@
+5 Mar. 2013
+- "Bilbo", "Bearer of Things Burgled" and any card that allows a choice of adding twilight now correctly displays
+the effect text.
+
 4 Mar. 2013
 - "Elrond", "Herald to Gil-galad" now gives an option, on how many times you wish to heal that ally.
 - "So Polite" now counts the threats when it resolves.
diff --git a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/effects/AddTwilightEffect.java b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/effects/AddTwilightEffect.java
index bcbc1750c..8fce9bbef 100644
--- a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/effects/AddTwilightEffect.java
+++ b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/effects/AddTwilightEffect.java
@@ -36,7 +36,7 @@ public class AddTwilightEffect extends AbstractEffect implements Preventable {
 
     @Override
     public String getText(LotroGame game) {
-        return "Add (" + _twilight + ")";
+        return "Add (" + getTwilightToAdd(game) + ")";
     }
 
     @Override
@@ -62,11 +62,15 @@ public class AddTwilightEffect extends AbstractEffect implements Preventable {
     @Override
     protected FullEffectResult playEffectReturningResult(LotroGame game) {
         if (!isPrevented(game)) {
-            int count = _twilight.evaluateExpression(game.getGameState(), game.getModifiersQuerying(), null);
+            int count = getTwilightToAdd(game);
             game.getGameState().sendMessage(_sourceText + " added " + count + " twilight");
             game.getGameState().addTwilight(count);
             return new FullEffectResult(true);
         }
         return new FullEffectResult(false);
     }
+
+    private int getTwilightToAdd(LotroGame game) {
+        return _twilight.evaluateExpression(game.getGameState(), game.getModifiersQuerying(), null);
+    }
 }