mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Changed target of Sun Titan to required.
This commit is contained in:
parent
b352217e17
commit
0ee20bde99
1 changed files with 4 additions and 1 deletions
|
@ -45,6 +45,7 @@ import mage.filter.predicate.mageobject.ConvertedManaCostPredicate;
|
|||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.events.GameEvent.EventType;
|
||||
import mage.target.Target;
|
||||
import mage.target.common.TargetCardInYourGraveyard;
|
||||
|
||||
/**
|
||||
|
@ -92,7 +93,9 @@ class SunTitanAbility extends TriggeredAbilityImpl<SunTitanAbility> {
|
|||
|
||||
public SunTitanAbility() {
|
||||
super(Zone.BATTLEFIELD, null, true);
|
||||
this.addTarget(new TargetCardInYourGraveyard(filter));
|
||||
Target target = new TargetCardInYourGraveyard(filter);
|
||||
target.setRequired(true);
|
||||
this.addTarget(target);
|
||||
this.addEffect(new ReturnFromGraveyardToBattlefieldTargetEffect());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue