mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Made choosing at least one color mandatory
10/1/2005: You can choose any single color or any combination of more than one color. You can't choose colorless.
This commit is contained in:
parent
a7b04234d4
commit
c63da1bb67
1 changed files with 4 additions and 2 deletions
|
@ -73,8 +73,10 @@ public class BecomesColorOrColorsTargetEffect extends OneShotEffect {
|
|||
|
||||
if (controller != null && target != null) {
|
||||
for (int i = 0; i < 5; i++) {
|
||||
if (!controller.chooseUse(Outcome.Neutral, "Do you wish to choose another color?", source, game)) {
|
||||
break;
|
||||
if (i > 0) {
|
||||
if (!controller.chooseUse(Outcome.Neutral, "Do you wish to choose another color?", source, game)) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
ChoiceColor choiceColor = new ChoiceColor();
|
||||
controller.choose(Outcome.Benefit, choiceColor, game);
|
||||
|
|
Loading…
Reference in a new issue