Corrected "Be Back Soon"

Previously, the card did not provide the text for the prevent cost in-game.
This commit is contained in:
PhallenCassidy
2016-12-12 09:02:53 -05:00
committed by GitHub
parent 534c73b38a
commit daf019e9f2

View File

@@ -52,7 +52,12 @@ public class Card5_021 extends AbstractEvent {
new PreventableEffect.PreventionCost() {
@Override
public Effect createPreventionCostForPlayer(SubAction subAction, String playerId) {
return new ChooseAndExertCharactersEffect(subAction, playerId, 1, 1, 2, CardType.MINION);
return new ChooseAndExertCharactersEffect(subAction, playerId, 1, 1, 2, CardType.MINION) {
@Override
public String getText(LotroGame game) {
return "Exert a minion twice";
}
}
}
}
));