forked from External/mage
Fix for #1016?
This commit is contained in:
parent
ceb41fca33
commit
ecd2bec8b3
1 changed files with 1 additions and 3 deletions
|
|
@ -12,7 +12,6 @@ import mage.cards.CardSetInfo;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.target.Target;
|
||||
import mage.target.common.TargetSpellOrPermanent;
|
||||
|
||||
/**
|
||||
|
|
@ -34,8 +33,7 @@ public final class VenserShaperSavant extends CardImpl {
|
|||
this.addAbility(FlashAbility.getInstance());
|
||||
// When Venser, Shaper Savant enters the battlefield, return target spell or permanent to its owner's hand.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new ReturnToHandTargetEffect(), false);
|
||||
Target target = new TargetSpellOrPermanent();
|
||||
ability.addTarget(target);
|
||||
ability.addTarget(new TargetSpellOrPermanent());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue