This commit is contained in:
jeffwadsworth 2020-07-10 09:43:51 -05:00
parent ac0bb713d7
commit 9b803cf833

View file

@ -19,11 +19,11 @@ import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.game.stack.Spell;
import mage.players.Player;
import mage.target.common.TargetCardInHand;
import mage.watchers.common.SpellsCastWatcher;
import java.util.List;
import java.util.UUID;
import mage.target.TargetCard;
/**
* @author jeffwadsworth
@ -92,7 +92,7 @@ class TwinningGlassEffect extends OneShotEffect {
}
}
}
TargetCardInHand target = new TargetCardInHand(0, 1, filterCard);
TargetCard target = new TargetCard(0, 1, Zone.HAND, filterCard);
if (controller.choose(Outcome.PlayForFree, controller.getHand(), target, game)) {
Card chosenCard = game.getCard(target.getFirstTarget());
if (chosenCard != null) {