From dfda65d11714ac5d02cccde7190b17800be96670 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 22 Apr 2015 15:36:22 +0200 Subject: [PATCH] * Academy Rector - Removed redundant choice for using to exile Academy Rector. --- .../mage/sets/urzasdestiny/AcademyRector.java | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Mage.Sets/src/mage/sets/urzasdestiny/AcademyRector.java b/Mage.Sets/src/mage/sets/urzasdestiny/AcademyRector.java index 6713f455a08..393033b9be8 100644 --- a/Mage.Sets/src/mage/sets/urzasdestiny/AcademyRector.java +++ b/Mage.Sets/src/mage/sets/urzasdestiny/AcademyRector.java @@ -60,7 +60,6 @@ public class AcademyRector extends CardImpl { this.subtype.add("Human"); this.subtype.add("Cleric"); - this.color.setWhite(true); this.power = new MageInt(1); this.toughness = new MageInt(2); @@ -101,17 +100,15 @@ class AcademyRectorEffect extends OneShotEffect { Player controller = game.getPlayer(source.getControllerId()); MageObject sourceObject = game.getObject(source.getSourceId()); if (controller != null && sourceObject != null) { - if (controller.chooseUse(outcome, "Exile " + sourceObject.getLogName() + " to return Spirit card?", game)) { - new ExileSourceEffect().apply(game, source); - TargetCardInLibrary target = new TargetCardInLibrary(filter); - target.setNotTarget(true); - controller.searchLibrary(target, game); - Card targetCard = game.getCard(target.getFirstTarget()); - if (targetCard != null) { - controller.putOntoBattlefieldWithInfo(targetCard, game, Zone.LIBRARY, source.getSourceId()); - } - controller.shuffleLibrary(game); + new ExileSourceEffect().apply(game, source); + TargetCardInLibrary target = new TargetCardInLibrary(filter); + target.setNotTarget(true); + controller.searchLibrary(target, game); + Card targetCard = game.getCard(target.getFirstTarget()); + if (targetCard != null) { + controller.putOntoBattlefieldWithInfo(targetCard, game, Zone.LIBRARY, source.getSourceId()); } + controller.shuffleLibrary(game); return true; } return false;