Fixed that the Genju enchantments did not return to hand from graveyard.

This commit is contained in:
LevelX2 2016-01-28 17:30:58 +01:00
parent 990839e9f8
commit cb7becdeca
9 changed files with 157 additions and 82 deletions

View file

@ -97,13 +97,13 @@ public class ReturnToHandSourceEffect extends OneShotEffect {
case BATTLEFIELD:
Permanent permanent = game.getPermanent(source.getSourceId());
if (permanent != null) {
return controller.moveCards(permanent, null, Zone.HAND, source, game);
return controller.moveCards(permanent, Zone.HAND, source, game);
}
break;
case GRAVEYARD:
Card card = (Card) mageObject;
if (!fromBattlefieldOnly) {
return controller.moveCards(card, null, Zone.HAND, source, game);
return controller.moveCards(card, Zone.HAND, source, game);
}
}
}