diff --git a/Mage.Sets/src/mage/cards/s/ShamelessCharlatan.java b/Mage.Sets/src/mage/cards/s/ShamelessCharlatan.java index dc0512ce109..2cf1955daeb 100644 --- a/Mage.Sets/src/mage/cards/s/ShamelessCharlatan.java +++ b/Mage.Sets/src/mage/cards/s/ShamelessCharlatan.java @@ -78,7 +78,7 @@ class ShamelessCharlatanEffect extends OneShotEffect { if (sourcePermanent == null || copyFromPermanent == null) { return false; } - game.copyPermanent(Duration.EndOfTurn, copyFromPermanent, sourcePermanent.getId(), source, new EmptyCopyApplier()); + game.copyPermanent(Duration.WhileOnBattlefield, copyFromPermanent, sourcePermanent.getId(), source, new EmptyCopyApplier()); return true; } }