mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Fixed that the Genju enchantments did not return to hand from graveyard.
This commit is contained in:
parent
990839e9f8
commit
cb7becdeca
9 changed files with 157 additions and 82 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue