diff --git a/Mage.Sets/src/mage/cards/s/SilentHallcreeper.java b/Mage.Sets/src/mage/cards/s/SilentHallcreeper.java index 40a36fc0ea2..03017dcdd57 100644 --- a/Mage.Sets/src/mage/cards/s/SilentHallcreeper.java +++ b/Mage.Sets/src/mage/cards/s/SilentHallcreeper.java @@ -87,7 +87,7 @@ class SilentHallcreeperEffect extends OneShotEffect { Permanent sourcePermanent = source.getSourcePermanentIfItStillExists(game); Permanent copyFromPermanent = game.getPermanent(getTargetPointer().getFirst(game, source)); if (sourcePermanent != null && copyFromPermanent != null) { - game.copyPermanent(Duration.EndOfTurn, copyFromPermanent, sourcePermanent.getId(), source, new EmptyCopyApplier()); + game.copyPermanent(Duration.Custom, copyFromPermanent, sourcePermanent.getId(), source, new EmptyCopyApplier()); return true; } return false;