- "Into the Wild" now should correctly count the sites in current region.

This commit is contained in:
marcins78
2013-04-05 10:28:07 +00:00
parent d2c10e7b0c
commit 889696f2a4
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>5 Apr. 2013</b>
- "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.
<b>4 Apr. 2013</b>
- "Peering forward" now correctly applies -2 modifier, if ELVEN card is revealed.

View File

@@ -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());
}
};