This commit is contained in:
Jeff Wadsworth 2022-04-20 12:00:04 -05:00
parent 31ccef2ef9
commit 3c73688822

View file

@ -102,9 +102,13 @@ class MairsilThePretenderExileEffect extends OneShotEffect {
Card card = controller.getHand().get(target.getFirstTarget(), game);
if (card != null) {
CardUtil.moveCardWithCounter(game, source, controller, card, Zone.EXILED, CounterType.CAGE.createInstance());
return CardUtil.moveCardWithCounter(game, source, controller, card, Zone.EXILED, CounterType.CAGE.createInstance());
}
return true;
card = controller.getGraveyard().get(target.getFirstTarget(), game);
if (card != null) {
return CardUtil.moveCardWithCounter(game, source, controller, card, Zone.EXILED, CounterType.CAGE.createInstance());
}
return false;
}
}