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 a5ec87aaa..9223693fd 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
@@ -6,6 +6,7 @@
- "Natural Advantages" is now unique (per card text).
- "Goblin Patrol" now has a correct name (instead of Patroller) and gets a discount for Goblin only, not just any card
(per card text).
+- "Lurtz, Champion of the White Hand" now spots only Hobbit companions, instead of just Hobbits (per card text).
12 Mar. 2013
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.
diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_226.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_226.java
index cd22ab73a..e4dab3ea6 100644
--- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_226.java
+++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/isengard/Card20_226.java
@@ -43,7 +43,7 @@ public class Card20_226 extends AbstractMinion {
public List getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.winsSkirmish(game, effectResult, self)) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
- int count = Filters.countSpottable(game.getGameState(), game.getModifiersQuerying(), Race.HOBBIT);
+ int count = Filters.countSpottable(game.getGameState(), game.getModifiersQuerying(), Race.HOBBIT, CardType.COMPANION);
if (count > 0)
action.appendEffect(
new ChooseAndExertCharactersEffect(action, game.getGameState().getCurrentPlayerId(), count, count, CardType.COMPANION));