mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
- Used newer moveCards method in AuraSwapAbility
This commit is contained in:
parent
5c5d729447
commit
f93f0cefb5
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ class AuraSwapEffect extends OneShotEffect {
|
||||||
enchantedPermanent.addAttachment(auraInHand.getId(), game);
|
enchantedPermanent.addAttachment(auraInHand.getId(), game);
|
||||||
game.informPlayers(controller.getLogName() + " put " + auraInHand.getLogName() + " on the battlefield attached to " + enchantedPermanent.getLogName() + ".");
|
game.informPlayers(controller.getLogName() + " put " + auraInHand.getLogName() + " on the battlefield attached to " + enchantedPermanent.getLogName() + ".");
|
||||||
enchantedPermanent.removeAttachment(auraSourcePermanent.getId(), game);
|
enchantedPermanent.removeAttachment(auraSourcePermanent.getId(), game);
|
||||||
return controller.moveCardToHandWithInfo(auraSourcePermanent, source.getSourceId(), game);
|
return controller.moveCards(auraInHand, Zone.HAND, source, game);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue