mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Nissa's Pilgrimage - Fixed a bug that the search library dialog was not shown.
This commit is contained in:
parent
a4f76a1fb8
commit
6fa2d146a9
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ class NissasPilgrimageEffect extends OneShotEffect {
|
||||||
number++;
|
number++;
|
||||||
}
|
}
|
||||||
TargetCardInLibrary target = new TargetCardInLibrary(0, number, filter);
|
TargetCardInLibrary target = new TargetCardInLibrary(0, number, filter);
|
||||||
controller.chooseTarget(outcome, target, source, game);
|
controller.searchLibrary(target, game);
|
||||||
if (!target.getTargets().isEmpty()) {
|
if (!target.getTargets().isEmpty()) {
|
||||||
Cards cards = new CardsImpl(target.getTargets());
|
Cards cards = new CardsImpl(target.getTargets());
|
||||||
controller.revealCards(sourceObject.getIdName(), cards, game);
|
controller.revealCards(sourceObject.getIdName(), cards, game);
|
||||||
|
|
Loading…
Reference in a new issue