From e618daa4619458a23d4b47c6166f2cd29ad49d69 Mon Sep 17 00:00:00 2001 From: Daniel Bomar Date: Fri, 18 Dec 2020 20:32:18 -0600 Subject: [PATCH] Cleanup Absorb Identity Code --- Mage.Sets/src/mage/cards/a/AbsorbIdentity.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/a/AbsorbIdentity.java b/Mage.Sets/src/mage/cards/a/AbsorbIdentity.java index 29d7d9c6e06..d24f6167a37 100644 --- a/Mage.Sets/src/mage/cards/a/AbsorbIdentity.java +++ b/Mage.Sets/src/mage/cards/a/AbsorbIdentity.java @@ -28,10 +28,12 @@ public final class AbsorbIdentity extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{U}"); // Return target creature to its owner's hand. - this.getSpellAbility().addTarget(new TargetCreaturePermanent()); this.getSpellAbility().addEffect(new ReturnToHandTargetEffect()); + // You may have Shapeshifters you control become copies of that creature until end of turn. this.getSpellAbility().addEffect(new AbsorbIdentityEffect()); + + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); } private AbsorbIdentity(final AbsorbIdentity card) {