From c63da1bb677ab07c7ccb61933858e47793f4f7a8 Mon Sep 17 00:00:00 2001 From: Zzooouhh Date: Sat, 11 Nov 2017 12:17:42 +0100 Subject: [PATCH] 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. --- .../common/continuous/BecomesColorOrColorsTargetEffect.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesColorOrColorsTargetEffect.java b/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesColorOrColorsTargetEffect.java index d7be01a950c..670ae3da062 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesColorOrColorsTargetEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/continuous/BecomesColorOrColorsTargetEffect.java @@ -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);