mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
* Mana Bloom - Fixed a bug that returing it to hand did not work correctly.
This commit is contained in:
parent
85f98c5fcf
commit
ada0fb15db
1 changed files with 2 additions and 2 deletions
|
|
@ -73,12 +73,12 @@ public class ReturnToHandSourceEffect extends OneShotEffect {
|
|||
case BATTLEFIELD:
|
||||
Permanent permanent = game.getPermanent(source.getSourceId());
|
||||
if (permanent != null) {
|
||||
controller.moveCardToHandWithInfo(card, source.getSourceId(), game, Zone.BATTLEFIELD);
|
||||
return controller.moveCardToHandWithInfo(permanent, source.getSourceId(), game, Zone.BATTLEFIELD);
|
||||
}
|
||||
break;
|
||||
case GRAVEYARD:
|
||||
if (!fromBattlefieldOnly) {
|
||||
controller.moveCardToHandWithInfo(card, source.getSourceId(), game, Zone.GRAVEYARD);
|
||||
return controller.moveCardToHandWithInfo(card, source.getSourceId(), game, Zone.GRAVEYARD);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue