forked from External/mage
Fix ShuffleIntoLibraryTargetEffect to support multiple target cards with possibly different owners
This commit is contained in:
parent
30aafb7672
commit
b5b4b38cc6
6 changed files with 86 additions and 75 deletions
|
|
@ -33,7 +33,7 @@ public class TargetCardInYourGraveyard extends TargetCard {
|
|||
}
|
||||
|
||||
public TargetCardInYourGraveyard(int minNumTargets, int maxNumTargets) {
|
||||
this(minNumTargets, maxNumTargets, StaticFilters.FILTER_CARD_FROM_YOUR_GRAVEYARD);
|
||||
this(minNumTargets, maxNumTargets, maxNumTargets > 1 ? StaticFilters.FILTER_CARDS_FROM_YOUR_GRAVEYARD : StaticFilters.FILTER_CARD_FROM_YOUR_GRAVEYARD);
|
||||
}
|
||||
|
||||
public TargetCardInYourGraveyard(int minNumTargets, int maxNumTargets, FilterCard filter) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue