[MID] Teferi, Who Slows the Sunset - Fixed targets on +1 ability (fixes #8423)

This commit is contained in:
Daniel Bomar 2021-10-31 08:28:58 -05:00
parent f3397dcf4f
commit 105e1f8ed9
No known key found for this signature in database
GPG key ID: C86C8658F4023918
2 changed files with 7 additions and 3 deletions

View file

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