- "Outer Wall" works on minions skirmishing ROHAN Man, not unbound companions (per card text).

This commit is contained in:
marcins78
2013-03-15 17:31:29 +00:00
parent 95494d4be8
commit 42975a71b7
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>15 Mar. 2013</b>
- "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).
<b>14 Mar. 2013</b>
- "Into the Wild" now increases site number only based on sites in current region (per card text).

View File

@@ -49,7 +49,7 @@ public class Card20_336 extends AbstractPermanent {
Set<PhysicalCard> toLose = new HashSet<PhysicalCard>();
final Set<Integer> toLoseInts = new HashSet<Integer>();
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());