* Academy Rector - Fixed that the search ability was handled as targeted effect.

This commit is contained in:
LevelX2 2014-09-07 16:00:42 +02:00
parent da44199b3d
commit bb0be3aea3

View file

@ -100,6 +100,7 @@ class AcademyRectorEffect extends OneShotEffect {
Player you = game.getPlayer(source.getControllerId());
if (you != null) {
TargetCardInLibrary target = new TargetCardInLibrary(filter);
target.setNotTarget(true);
you.searchLibrary(target, game);
Card targetCard = game.getCard(target.getFirstTarget());
if (targetCard == null) {