mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[MID] Teferi, Who Slows the Sunset - Fixed targets on +1 ability (fixes #8423)
This commit is contained in:
parent
f3397dcf4f
commit
105e1f8ed9
2 changed files with 7 additions and 3 deletions
|
|
@ -23,6 +23,10 @@ public class TargetLandPermanent extends TargetPermanent {
|
|||
this(numTargets, numTargets, StaticFilters.FILTER_LAND, false);
|
||||
}
|
||||
|
||||
public TargetLandPermanent(int numTargets, int maxNumTargets) {
|
||||
this(numTargets, maxNumTargets, StaticFilters.FILTER_LAND, false);
|
||||
}
|
||||
|
||||
public TargetLandPermanent(int minNumTargets, int maxNumTargets, FilterLandPermanent filter, boolean notTarget) {
|
||||
super(minNumTargets, maxNumTargets, filter, notTarget);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue