- "Blood Runs Chill" now discards the shadow cards once only.

This commit is contained in:
marcins78
2013-01-16 14:33:24 +00:00
parent da54ac4984
commit 15e5453107
2 changed files with 6 additions and 1 deletions

View File

@@ -1,4 +1,7 @@
<pre style="font-size:80%">
<b>16 Jan. 2013</b>
- "Blood Runs Chill" now discards the shadow cards once only.
<b>13 Jan. 2013</b>
- Both Rumils now have the same name.

View File

@@ -65,10 +65,12 @@ public class ChooseAndExertCharactersEffect extends ChooseActiveCardsEffect {
protected final void cardsSelected(LotroGame game, Collection<PhysicalCard> characters) {
_resultSubAction = new SubAction(_action);
for (int i = 0; i < _times; i++) {
final boolean first = (i==0);
_resultSubAction.appendEffect(new ExertCharactersEffect(_action, _action.getActionSource(), characters.toArray(new PhysicalCard[characters.size()])) {
@Override
protected void forEachExertedByEffect(PhysicalCard physicalCard) {
ChooseAndExertCharactersEffect.this.forEachCardExertedCallback(physicalCard);
if (first)
ChooseAndExertCharactersEffect.this.forEachCardExertedCallback(physicalCard);
}
});
}