attachments.addAll(target.getAttachments());
for (UUID attachmentId : attachments) {
Permanent attachment = game.getPermanent(attachmentId);
if (attachment != null && attachment.getControllerId().equals(source.getControllerId())
&& attachment.getSubtype().contains("Aura")) {
attachment.moveToZone(Zone.HAND, source.getSourceId(), game, false);
}
}
if (target.getControllerId().equals(source.getControllerId())) {
target.moveToZone(Zone.HAND, source.getSourceId(), game, false);
}