From 02eaf698013a227f2ede3b1be1aecec13c87cd65 Mon Sep 17 00:00:00 2001
From: Evan Kranzler <theelk801@gmail.com>
Date: Wed, 29 Apr 2020 19:16:43 -0400
Subject: [PATCH] fixed Nascent Metamorph not becoming a copy of the revealed
 card

---
 Mage.Sets/src/mage/cards/n/NascentMetamorph.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Mage.Sets/src/mage/cards/n/NascentMetamorph.java b/Mage.Sets/src/mage/cards/n/NascentMetamorph.java
index c4e62962a9..7f135eb61f 100644
--- a/Mage.Sets/src/mage/cards/n/NascentMetamorph.java
+++ b/Mage.Sets/src/mage/cards/n/NascentMetamorph.java
@@ -82,7 +82,7 @@ class NascentMetamorphEffect extends OneShotEffect {
             toCopy = card;
             break;
         }
-        Permanent permanent = game.getPermanent(source.getFirstTarget());
+        Permanent permanent = game.getPermanent(source.getSourceId());
         if (toCopy != null && permanent != null) {
             game.copyPermanent(Duration.EndOfTurn, new PermanentCard(
                     toCopy, source.getControllerId(), game