Wound/Heal X times change.

This commit is contained in:
marcins78@gmail.com
2012-01-05 15:46:50 +00:00
parent b670a7d69f
commit 5363f15e6a

View File

@@ -45,7 +45,7 @@ public class ChooseAndWoundCharactersEffect extends ChooseActiveCardsEffect {
SubAction subAction = new SubAction(_action);
for (int i = 0; i < _count; i++) {
PhysicalCard source = (_action.getActionSource() != null) ? _action.getActionSource() : null;
WoundCharactersEffect woundEffect = new WoundCharactersEffect(source, Filters.in(cards));
WoundCharactersEffect woundEffect = new WoundCharactersEffect(source, cards.toArray(new PhysicalCard[cards.size()]));
if (_sourceText != null)
woundEffect.setSourceText(_sourceText);
subAction.appendEffect(woundEffect);