mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* 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:
parent
5115776c6d
commit
571c1cd640
1 changed files with 3 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue