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 adaf1fb2b..090cc4c95 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
@@ -2,6 +2,8 @@
4 Apr. 2013
- "Peering forward" now correctly applies -2 modifier, if ELVEN card is revealed.
- "Troll of Morannon" has no Damage +1 keyword (per card text).
+- "Cave Troll of Moria, Monstrous Friend" should now correctly count the number of cards you can discard from hand to
+play it, when figuring out, if it is playable.
25 Mar. 2013
- Changed all images for set 20 from PNG to JPEG.
diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/moria/Card20_256.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/moria/Card20_256.java
index 86d12f975..9c4f570af 100644
--- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/moria/Card20_256.java
+++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/moria/Card20_256.java
@@ -31,7 +31,7 @@ public class Card20_256 extends AbstractMinion {
@Override
protected int getPotentialExtraPaymentDiscount(String playerId, LotroGame game, PhysicalCard self) {
- return Filters.filter(game.getGameState().getHand(playerId), game.getGameState(), game.getModifiersQuerying(), Culture.MORIA, Filters.not(self)).size();
+ return Filters.filter(game.getGameState().getHand(playerId), game.getGameState(), game.getModifiersQuerying(), Culture.MORIA, Race.GOBLIN, Filters.not(self)).size();
}
@Override