- "Neekerbreekers' Bog" should now correctly exert minions when moving to the site.

This commit is contained in:
marcins78@gmail.com
2013-11-27 23:53:45 +00:00
parent 9aafc58663
commit de337be777
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>27 Nov. 2013</b>
- "Neekerbreekers' Bog" should now correctly exert minions when moving to the site.
<b>10 Sep. 2013</b>
- Fixed issue with being able to play more than allowed number of games in a league in certain circumstances.

View File

@@ -35,7 +35,7 @@ public class Card11_249 extends AbstractNewSite {
action.appendEffect(
new HealCharactersEffect(self, Filters.or(CardType.COMPANION, CardType.ALLY), Filters.minResistance(5)));
action.appendEffect(
new ExertCharactersEffect(action, self, Filters.or(CardType.COMPANION, CardType.ALLY), Filters.maxResistance(4)));
new ExertCharactersEffect(action, self, Filters.character, Filters.not(Filters.or(CardType.COMPANION, CardType.ALLY), Filters.minResistance(5))));
return Collections.singletonList(action);
}
return null;