mirror of
https://github.com/correl/mage.git
synced 2025-04-12 01:01:04 -09:00
Fixed card "Insidious Dreams" (#9823)
This commit is contained in:
parent
ef99ebb1b3
commit
8228c39c5b
1 changed files with 1 additions and 2 deletions
|
@ -68,8 +68,7 @@ class InsidiousDreamsEffect extends OneShotEffect {
|
|||
0, GetXValue.instance.calculate(game, source, this), StaticFilters.FILTER_CARD_CARDS
|
||||
);
|
||||
controller.searchLibrary(target, source, game);
|
||||
Cards chosen = new CardsImpl();
|
||||
target.getTargets().stream().forEach(cardId -> controller.getLibrary().getCard(cardId, game));
|
||||
Cards chosen = new CardsImpl(target.getTargets());
|
||||
controller.shuffleLibrary(source, game);
|
||||
controller.putCardsOnTopOfLibrary(chosen, game, source, true);
|
||||
return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue