forked from External/mage
Removed obsolete Zone parameter in CardsImpl constructors.
This commit is contained in:
parent
65f4b4c2d7
commit
3dcdd7f046
66 changed files with 174 additions and 217 deletions
|
|
@ -112,7 +112,7 @@ class FlashOfInsightEffect extends OneShotEffect {
|
|||
int xValue;
|
||||
xValue = source.getManaCostsToPay().getX();
|
||||
|
||||
Cards cards = new CardsImpl(Zone.PICK);
|
||||
Cards cards = new CardsImpl();
|
||||
int count = Math.min(player.getLibrary().size(), xValue);
|
||||
for (int i = 0; i < count; i++) {
|
||||
Card card = player.getLibrary().removeFromTop(game);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue