This commit is contained in:
jeffwadsworth 2021-09-09 12:00:59 -05:00
parent 4badbe56b4
commit 2df79a95dd

View file

@ -72,7 +72,8 @@ public class ReturnToHandSourceEffect extends OneShotEffect {
switch (game.getState().getZone(mageObject.getId())) { switch (game.getState().getZone(mageObject.getId())) {
case BATTLEFIELD: case BATTLEFIELD:
Permanent permanent = game.getPermanent(source.getSourceId()); Permanent permanent = game.getPermanent(source.getSourceId());
if (permanent != null) { if (permanent != null
&& permanent.isPhasedIn()) {
return controller.moveCards(permanent, Zone.HAND, source, game); return controller.moveCards(permanent, Zone.HAND, source, game);
} }
break; break;