Fixed a bug that also equipments were returned to hand by Orzhov's Charms first ability.

This commit is contained in:
LevelX2 2013-02-17 01:09:02 +01:00
parent b099b57d8b
commit 33a917c216

View file

@ -120,7 +120,8 @@ class OrzhovCharmReturnToHandEffect extends OneShotEffect<OrzhovCharmReturnToHan
attachments.addAll(target.getAttachments());
for (UUID attachmentId : attachments) {
Permanent attachment = game.getPermanent(attachmentId);
if (attachment != null && attachment.getControllerId().equals(source.getControllerId())) {
if (attachment != null && attachment.getControllerId().equals(source.getControllerId())
&& attachment.getSubtype().contains("Aura")) {
attachment.moveToZone(Zone.HAND, source.getSourceId(), game, false);
}
}