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 1df794b98..e132b8094 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 @@
 5 Apr. 2013
 - "Deft In Their Movements" now applies only to sites that were in play at the time it was played.
+- "Into the Wild" now should correctly count the sites in current region.
 
 4 Apr. 2013
 - "Peering forward" now correctly applies -2 modifier, if ELVEN card is revealed.
diff --git a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/filters/Filters.java b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/filters/Filters.java
index 1940b383e..9ef12fc02 100644
--- a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/filters/Filters.java
+++ b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/filters/Filters.java
@@ -672,7 +672,7 @@ public class Filters {
     public static final Filter currentRegion = new Filter() {
         @Override
         public boolean accepts(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard physicalCard) {
-            return GameUtils.getRegion(gameState.getCurrentSiteNumber()) == GameUtils.getRegion(gameState);
+            return GameUtils.getRegion(gameState) == GameUtils.getRegion(physicalCard.getSiteNumber());
         }
     };