* Molten Psyche - 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:37:58 +02:00
parent 5115776c6d
commit 571c1cd640

View file

@ -101,6 +101,9 @@ class MoltenPsycheEffect extends OneShotEffect {
player.shuffleLibrary(game);
}
}
game.applyEffects(); // so effects from creatures that were on the battlefield won't trigger from draw action
for (UUID playerId : cardsToDraw.keySet()) {
Player player = game.getPlayer(playerId);
if (player != null) {