Skip to content

Commit

Permalink
fix Silent Hallcreeper duration
Browse files Browse the repository at this point in the history
  • Loading branch information
xenohedron committed Jan 25, 2025
1 parent 33a9992 commit 166ecb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mage.Sets/src/mage/cards/s/SilentHallcreeper.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public boolean apply(Game game, Ability source) {
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;
Expand Down

0 comments on commit 166ecb9

Please sign in to comment.