mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[C20] Fix Animist's Awakening: Cards should go on bottom in random order (#9160)
This commit is contained in:
parent
0e38392722
commit
0cc5317c2a
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ class AnimistsAwakeningEffect extends OneShotEffect {
|
|||
toBattlefield.add(card);
|
||||
}
|
||||
controller.moveCards(toBattlefield, Zone.BATTLEFIELD, source, game, true, false, true, null);
|
||||
controller.putCardsOnBottomOfLibrary(cards, game, source, true);
|
||||
controller.putCardsOnBottomOfLibrary(cards, game, source, false);
|
||||
|
||||
if (SpellMasteryCondition.instance.apply(game, source)) {
|
||||
for (Card card : toBattlefield) {
|
||||
|
|
Loading…
Reference in a new issue