mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Sylvan Library - Fixed that the order of the cards put back to library was random.
This commit is contained in:
parent
cdcbf0aaa2
commit
7fef8113c0
1 changed files with 1 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.s;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
@ -106,7 +105,7 @@ class SylvanLibraryEffect extends OneShotEffect {
|
|||
}
|
||||
}
|
||||
}
|
||||
controller.putCardsOnTopOfLibrary(cardsPutBack, game, source, false);
|
||||
controller.putCardsOnTopOfLibrary(cardsPutBack, game, source, true);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue