Corrected "Tauriel" maneuver action

Previously allowed the opponent to pick which minion was returned
This commit is contained in:
PhallenCassidy
2017-11-28 12:35:56 -05:00
committed by GitHub
parent 7d83b7ee9e
commit 6203a97c92

View File

@@ -42,13 +42,7 @@ public class Card31_010 extends AbstractAlly {
action.appendCost(
new SelfExertEffect(action, self));
action.appendEffect(
new ChooseOpponentEffect(playerId) {
@Override
protected void opponentChosen(String opponentId) {
action.appendEffect(
new ChooseAndReturnCardsToHandEffect(action, opponentId, 1, 1, Race.ORC, Filters.lessStrengthThan(8)));
}
});
new ChooseAndReturnCardsToHandEffect(action, playerId, 1, 1, Race.ORC, Filters.lessStrengthThan(8)));
return Collections.singletonList(action);
}
return null;