mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
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:
parent
c9de200b04
commit
c145beb38c
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ class PsychicSurgeryEffect extends OneShotEffect {
|
|||
}
|
||||
}
|
||||
}
|
||||
controller.putCardsOnBottomOfLibrary(cards, game, source, true);
|
||||
controller.putCardsOnTopOfLibrary(cards, game, source, true);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue