fixed Phyrexian Scriptures exiling all graveyards rather than the opponents'

This commit is contained in:
Evan Kranzler 2018-04-23 23:28:03 -04:00
parent a5fc4d0741
commit 95efa51197
2 changed files with 2 additions and 2 deletions

View file

@ -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);
}

View file

@ -74,7 +74,7 @@ public class ExileGraveyardAllPlayersEffect extends OneShotEffect {
@Override
public ExileGraveyardAllPlayersEffect copy() {
return new ExileGraveyardAllPlayersEffect();
return new ExileGraveyardAllPlayersEffect(this);
}
@Override