mirror of
https://github.com/correl/mage.git
synced 2025-04-11 09:11:12 -09:00
Fix Ascent of the Worthy targeting
This commit is contained in:
parent
e7ca63b0c4
commit
469fd64f05
1 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ import mage.game.events.GameEvent;
|
|||
import mage.game.permanent.Permanent;
|
||||
import mage.players.Player;
|
||||
import mage.target.TargetPermanent;
|
||||
import mage.target.common.TargetCardInGraveyard;
|
||||
import mage.target.common.TargetCardInYourGraveyard;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
import mage.target.targetpointer.FixedTarget;
|
||||
|
||||
|
@ -46,7 +46,7 @@ public final class AscentOfTheWorthy extends CardImpl {
|
|||
sagaAbility.addChapterEffect(
|
||||
this, SagaChapter.CHAPTER_III, SagaChapter.CHAPTER_III,
|
||||
new AscentOfTheWorthyReturnEffect(),
|
||||
new TargetCardInGraveyard(StaticFilters.FILTER_CARD_CREATURE_YOUR_GRAVEYARD)
|
||||
new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURE_YOUR_GRAVEYARD)
|
||||
);
|
||||
|
||||
this.addAbility(sagaAbility);
|
||||
|
|
Loading…
Add table
Reference in a new issue