Fixed bug in targeting. Fixed Issue 231.

This commit is contained in:
magenoxx 2011-09-02 00:36:02 +04:00
parent cecf74884a
commit e69f9e28d5

View file

@ -75,11 +75,12 @@ public class TargetCardInLibrary extends TargetCard<TargetCardInLibrary> {
}
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;
}