[C20] Fix Animist's Awakening: Cards should go on bottom in random order (#9160)

This commit is contained in:
Grath 2022-06-26 22:56:08 -04:00 committed by GitHub
parent 0e38392722
commit 0cc5317c2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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