Merge pull request #5552 from brikr/master

Fix Psychic Surgery putting cards on bottom of library
This commit is contained in:
Oleg Agafonov 2019-01-26 13:14:20 +04:00 committed by GitHub
commit fceedff3a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;