- fixed duration on Shameless Charlatan

This commit is contained in:
Jeff Wadsworth 2023-01-25 16:17:38 -06:00
parent 28f933e1a7
commit 04e6b16899

View file

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