diff --git a/Mage/src/mage/target/common/TargetCardInLibrary.java b/Mage/src/mage/target/common/TargetCardInLibrary.java index bb27c2de24..11f43a7850 100644 --- a/Mage/src/mage/target/common/TargetCardInLibrary.java +++ b/Mage/src/mage/target/common/TargetCardInLibrary.java @@ -75,11 +75,12 @@ public class TargetCardInLibrary extends TargetCard { } chosen = targets.size() >= minNumberOfTargets; } - while (!doneChosing()) { + // Issue 231 + /*while (!doneChosing()) { if (!player.choose(outcome, new CardsImpl(Zone.LIBRARY, player.getLibrary().getCards(game)), this, game)) { break; } - } + }*/ return chosen = true; }