From 825a56041677351d7fa94397f465b1631ed478fe Mon Sep 17 00:00:00 2001 From: theelk801 Date: Wed, 7 Jan 2026 09:21:35 -0500 Subject: [PATCH] fix build error --- Mage.Sets/src/mage/cards/p/Personify.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/p/Personify.java b/Mage.Sets/src/mage/cards/p/Personify.java index 92b33354840..11e418dbf33 100644 --- a/Mage.Sets/src/mage/cards/p/Personify.java +++ b/Mage.Sets/src/mage/cards/p/Personify.java @@ -22,7 +22,7 @@ public final class Personify extends CardImpl { // Exile target creature you control, then return that card to the battlefield under its owner's control. Create a 1/1 colorless Shapeshifter creature token with changeling. this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent()); this.getSpellAbility().addEffect(new ExileThenReturnTargetEffect(false, true)); - this.getSpellAbility().addEffect(new CreateTokenEffect(new ShapeshifterColorlessToken()); + this.getSpellAbility().addEffect(new CreateTokenEffect(new ShapeshifterColorlessToken())); } private Personify(final Personify card) {