Merge pull request #7280 from weirddan455/vivien-fix

Vivien, Monsters' Advocate - Make the choice for counter on token required (fixes #7264)
This commit is contained in:
Oleg Agafonov 2020-12-25 18:49:33 +01:00 committed by GitHub
commit f96fc3366c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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();