mirror of
https://github.com/correl/mage.git
synced 2025-03-13 01:09:53 -09:00
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:
commit
f96fc3366c
1 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue