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 dc7c94d1b..467d7cfda 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 @@
+4 Apr. 2013
+- "Peering forward" now correctly applies -2 modifier, if ELVEN card is revealed.
+
25 Mar. 2013
- Changed all images for set 20 from PNG to JPEG.
- "Hama, Protector of the Golden Hall" has now 7 resistance, not 5 (per card text).
diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/elven/Card20_100.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/elven/Card20_100.java
index 9cf6a4623..2da53ae65 100644
--- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/elven/Card20_100.java
+++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/elven/Card20_100.java
@@ -36,7 +36,7 @@ public class Card20_100 extends AbstractPermanent {
List actions = new LinkedList();
final Collection revealedCards = revealedCardsResult.getRevealedCards();
for (PhysicalCard revealedCard : revealedCards) {
- int penalty = revealedCard.getBlueprint().getCulture() == Culture.ELVEN ? -2 : -1;
+ final int penalty = revealedCard.getBlueprint().getCulture() == Culture.ELVEN ? -2 : -1;
final OptionalTriggerAction action = new OptionalTriggerAction(self);
action.setText("Give minion "+penalty+" strength");
action.setTriggerIdentifier(self.getCardId() + "-" + revealedCard.getCardId());
@@ -46,7 +46,7 @@ public class Card20_100 extends AbstractPermanent {
protected void cardSelected(LotroGame game, PhysicalCard card) {
action.appendEffect(
new AddUntilStartOfPhaseModifierEffect(
- new StrengthModifier(self, card, -1), Phase.REGROUP));
+ new StrengthModifier(self, card, penalty), Phase.REGROUP));
}
});
actions.add(action);