mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
[ZNR] fixed missing target for Glacial Grasp (#7046)
This commit is contained in:
parent
1a65af2aaf
commit
7020303a98
1 changed files with 2 additions and 0 deletions
|
@ -11,6 +11,7 @@ import mage.constants.Outcome;
|
|||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.players.Player;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -24,6 +25,7 @@ public final class GlacialGrasp extends CardImpl {
|
|||
|
||||
// Tap target creature. Its controller mills two cards. That creature doesn't untap during its controller's next untap step.
|
||||
this.getSpellAbility().addEffect(new GlacialGraspEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
|
||||
// Draw a card.
|
||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
|
||||
|
|
Loading…
Reference in a new issue