mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
fixed Phyrexian Scriptures exiling all graveyards rather than the opponents'
This commit is contained in:
parent
a5fc4d0741
commit
95efa51197
2 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ public class PhyrexianScriptures extends CardImpl {
|
|||
// III — Exile all cards from all opponents' graveyards.
|
||||
sagaAbility.addChapterEffect(this, SagaChapter.CHAPTER_III,
|
||||
new ExileGraveyardAllPlayersEffect(StaticFilters.FILTER_CARD_CARDS, TargetController.OPPONENT)
|
||||
.setText("exile all cards from all opponents' graveyards"));
|
||||
);
|
||||
this.addAbility(sagaAbility);
|
||||
}
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@ public class ExileGraveyardAllPlayersEffect extends OneShotEffect {
|
|||
|
||||
@Override
|
||||
public ExileGraveyardAllPlayersEffect copy() {
|
||||
return new ExileGraveyardAllPlayersEffect();
|
||||
return new ExileGraveyardAllPlayersEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue