mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Proliferate - Added object id to the displayed permanent's name if the player has to choose which counter to proliferate.
This commit is contained in:
parent
060a468d4b
commit
05b654b5bd
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ public class ProliferateEffect extends OneShotEffect {
|
|||
choices.add(counter.getName());
|
||||
}
|
||||
choice.setChoices(choices);
|
||||
choice.setMessage("Choose a counter to proliferate (" + permanent.getName() + ")");
|
||||
choice.setMessage("Choose a counter to proliferate (" + permanent.getIdName() + ")");
|
||||
controller.choose(Outcome.Benefit, choice, game);
|
||||
for (Counter counter : permanent.getCounters().values()) {
|
||||
if (counter.getName().equals(choice.getChoice())) {
|
||||
|
|
Loading…
Reference in a new issue