mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* The Great Aurora - Fixed that abilities of permanents moved to library triggered from later card draw or putting cards into play.
This commit is contained in:
parent
9f4a0b008d
commit
da45a3d921
1 changed files with 3 additions and 1 deletions
|
@ -117,10 +117,12 @@ class TheGreatAuroraEffect extends OneShotEffect {
|
|||
for (Permanent permanent : list) {
|
||||
player.moveCardToLibraryWithInfo(permanent, source.getSourceId(), game, Zone.BATTLEFIELD, true, true);
|
||||
}
|
||||
player.getLibrary().shuffle();
|
||||
player.shuffleLibrary(game);
|
||||
}
|
||||
}
|
||||
|
||||
game.applyEffects(); // so effects from creatures that were on the battlefield won't trigger from draw or put into play
|
||||
|
||||
// Draw cards
|
||||
for (UUID playerId : game.getState().getPlayersInRange(source.getControllerId(), game)) {
|
||||
Player player = game.getPlayer(playerId);
|
||||
|
|
Loading…
Reference in a new issue