diff --git a/Mage/src/main/java/mage/abilities/effects/common/ReturnToLibrarySpellEffect.java b/Mage/src/main/java/mage/abilities/effects/common/ReturnToLibrarySpellEffect.java index ee660ee855..8ad7213840 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/ReturnToLibrarySpellEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/ReturnToLibrarySpellEffect.java @@ -34,8 +34,8 @@ public class ReturnToLibrarySpellEffect extends OneShotEffect { Player controller = game.getPlayer(source.getControllerId()); if (controller != null) { Spell spell = game.getStack().getSpell(source.getSourceId()); - if (spell != null) { - Card spellCard = game.getStack().getSpell(source.getSourceId()).getCard(); + if (spell != null && !spell.isCopy()) { + Card spellCard = spell.getCard(); if (spellCard != null) { controller.moveCardToLibraryWithInfo(spellCard, source, game, Zone.STACK, toTop, true); }