mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
- Fixed #6803
This commit is contained in:
parent
ac0bb713d7
commit
9b803cf833
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue