Removing infinite call stack.

This commit is contained in:
marcins78@gmail.com
2011-09-11 08:30:24 +00:00
parent 0a338bd188
commit 4e7ce7a5f3

View File

@@ -38,7 +38,7 @@ public class Card1_046 extends AbstractPermanent {
@Override
public PlayPermanentAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier) {
final PlayPermanentAction action = getPlayCardAction(playerId, game, self, twilightModifier);
final PlayPermanentAction action = super.getPlayCardAction(playerId, game, self, twilightModifier);
action.addCost(
new ChooseAndExertCharacterEffect(action, playerId, "Choose an Elf ally to exert", true, Filters.race(Race.ELF), Filters.type(CardType.ALLY), Filters.canExert()));
return action;