mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fixed bug in targeting. Fixed Issue 231.
This commit is contained in:
parent
cecf74884a
commit
e69f9e28d5
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue