diff --git a/Mage/src/main/java/mage/abilities/keyword/AuraSwapAbility.java b/Mage/src/main/java/mage/abilities/keyword/AuraSwapAbility.java index 8ea3ec5f53e..cf985787910 100644 --- a/Mage/src/main/java/mage/abilities/keyword/AuraSwapAbility.java +++ b/Mage/src/main/java/mage/abilities/keyword/AuraSwapAbility.java @@ -106,7 +106,7 @@ class AuraSwapEffect extends OneShotEffect { enchantedPermanent.addAttachment(auraInHand.getId(), game); game.informPlayers(controller.getLogName() + " put " + auraInHand.getLogName() + " on the battlefield attached to " + enchantedPermanent.getLogName() + "."); enchantedPermanent.removeAttachment(auraSourcePermanent.getId(), game); - return controller.moveCards(auraInHand, Zone.HAND, source, game); + return controller.moveCards(game.getCard(source.getSourceId()), Zone.HAND, source, game); } } }