1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-13 01:09:53 -09:00

fixed Nascent Metamorph not becoming a copy of the revealed card

This commit is contained in:
Evan Kranzler 2020-04-29 19:16:43 -04:00
parent ba4fba24ce
commit 02eaf69801

View file

@ -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