From 166ecb98d0556c71d7aff995285415c562ccacd0 Mon Sep 17 00:00:00 2001 From: xenohedron <12538125+xenohedron@users.noreply.github.com> Date: Fri, 24 Jan 2025 19:06:17 -0500 Subject: [PATCH] fix Silent Hallcreeper duration --- Mage.Sets/src/mage/cards/s/SilentHallcreeper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;