Fix Psychic Surgery putting cards on bottom of library

#5126
Effect now properly puts cards on top of opponent's library.
This commit is contained in:
Brik Royster 2019-01-26 00:48:04 -08:00
parent c9de200b04
commit c145beb38c

View file

@ -114,7 +114,7 @@ class PsychicSurgeryEffect extends OneShotEffect {
}
}
}
controller.putCardsOnBottomOfLibrary(cards, game, source, true);
controller.putCardsOnTopOfLibrary(cards, game, source, true);
return true;
}
return false;