diff --git a/Mage.Sets/src/mage/sets/newphyrexia/PraetorsGrasp.java b/Mage.Sets/src/mage/sets/newphyrexia/PraetorsGrasp.java index 6f04695e51a..da2bc3e056a 100644 --- a/Mage.Sets/src/mage/sets/newphyrexia/PraetorsGrasp.java +++ b/Mage.Sets/src/mage/sets/newphyrexia/PraetorsGrasp.java @@ -27,13 +27,7 @@ */ package mage.sets.newphyrexia; -import java.util.UUID; -import mage.Constants.AsThoughEffectType; -import mage.Constants.CardType; -import mage.Constants.Duration; -import mage.Constants.Outcome; -import mage.Constants.Rarity; -import mage.Constants.Zone; +import mage.Constants.*; import mage.abilities.Ability; import mage.abilities.effects.AsThoughEffectImpl; import mage.abilities.effects.OneShotEffect; @@ -46,6 +40,8 @@ import mage.players.Player; import mage.target.common.TargetCardInLibrary; import mage.target.common.TargetOpponent; +import java.util.UUID; + /** * * @author BetaSteward @@ -104,6 +100,7 @@ class PraetorsGraspEffect extends OneShotEffect { Card card = opponent.getLibrary().remove(targetId, game); if (card != null) { card.setFaceDown(true); + card.setControllerId(player.getId()); card.moveToExile(getId(), "Praetor's Grasp", source.getSourceId(), game); game.addEffect(new PraetorsGraspPlayEffect(card.getId()), source); }