Vivien, Monsters' Advocate - Make the choice for counter on token required (fixes #7264)

This commit is contained in:
Daniel Bomar 2020-12-23 13:39:47 -06:00
parent aebf8b461f
commit d64c9c4117

View file

@ -107,7 +107,8 @@ class VivienMonstersAdvocateTokenEffect extends OneShotEffect {
if (permanent == null) {
continue;
}
Choice choice = new ChoiceImpl();
Choice choice = new ChoiceImpl(true);
choice.setMessage("Choose vigilance, reach, or trample counter");
choice.setChoices(choices);
player.choose(outcome, choice, game);
String chosen = choice.getChoice();