* 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:
LevelX2 2015-08-29 10:36:43 +02:00
parent 9f4a0b008d
commit da45a3d921

View file

@ -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);