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 edbff714d..c28df091f 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 @@
+13 Nov. 2017
+- "Riders in Black" now correctly adds strength bonus.
+
17 Dec. 2015
- "Armor of Khazad" no longer allows to return itself from discard and can now be transferred.
diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set11/wraith/Card11_215.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set11/wraith/Card11_215.java
index 355d7a07a..290636784 100644
--- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set11/wraith/Card11_215.java
+++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set11/wraith/Card11_215.java
@@ -37,13 +37,14 @@ public class Card11_215 extends AbstractEvent {
new RevealHandEffect(self, playerId, playerId) {
@Override
protected void cardsRevealed(final Collection extends PhysicalCard> cards) {
- new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId,
- new Evaluator() {
- @Override
- public int evaluateExpression(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard cardAffected) {
- return Filters.filter(cards, game.getGameState(), game.getModifiersQuerying(), Culture.WRAITH, CardType.MINION).size();
- }
- }, Culture.WRAITH, CardType.MINION);
+ action.appendEffect(
+ new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId,
+ new Evaluator() {
+ @Override
+ public int evaluateExpression(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard cardAffected) {
+ return Filters.filter(cards, game.getGameState(), game.getModifiersQuerying(), Culture.WRAITH, CardType.MINION).size();
+ }
+ }, Culture.WRAITH, CardType.MINION));
}
});
return action;