- Used newer moveCards method in AuraSwapAbility

This commit is contained in:
jeff 2016-07-17 19:58:59 -05:00
parent 5c5d729447
commit f93f0cefb5

View file

@ -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);
} }
} }
} }