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 e188ca95a..d15f379eb 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,6 +1,7 @@
15 Mar. 2013
- "Lothlorien" correctly requires to spot 2 elves, instead of just one to remove the burden.
+- "Outer Wall" works on minions skirmishing ROHAN Man, not unbound companions (per card text).
14 Mar. 2013
- "Into the Wild" now increases site number only based on sites in current region (per card text).
diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/rohan/Card20_336.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/rohan/Card20_336.java
index f53aacf9e..422b3995d 100644
--- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/rohan/Card20_336.java
+++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/rohan/Card20_336.java
@@ -49,7 +49,7 @@ public class Card20_336 extends AbstractPermanent {
Set toLose = new HashSet();
final Set toLoseInts = new HashSet();
- for (PhysicalCard minion : Filters.filterActive(game.getGameState(), game.getModifiersQuerying(), Filters.inSkirmishAgainst(Filters.unboundCompanion))) {
+ for (PhysicalCard minion : Filters.filterActive(game.getGameState(), game.getModifiersQuerying(), Filters.inSkirmishAgainst(Culture.ROHAN, Race.MAN))) {
if (!minionsMarked.contains(minion.getCardId())) {
toLose.add(minion);
toLoseInts.add(minion.getCardId());