forked from External/mage
text fixes [WOE] etc. (#11035)
* Fix Callous Sell Sword text * simple text fixes * fix some target texts
This commit is contained in:
parent
c4e48a6f95
commit
a9870b6ff8
14 changed files with 58 additions and 18 deletions
|
|
@ -7,7 +7,7 @@ import mage.filter.common.FilterAnyTarget;
|
|||
*/
|
||||
public class TargetAnyTarget extends TargetPermanentOrPlayer {
|
||||
|
||||
private static final FilterAnyTarget filter = new FilterAnyTarget();
|
||||
private static final FilterAnyTarget defaultFilter = new FilterAnyTarget();
|
||||
|
||||
public TargetAnyTarget() {
|
||||
this(1);
|
||||
|
|
@ -18,6 +18,10 @@ public class TargetAnyTarget extends TargetPermanentOrPlayer {
|
|||
}
|
||||
|
||||
public TargetAnyTarget(int minNumTargets, int maxNumTargets) {
|
||||
this(minNumTargets, maxNumTargets, defaultFilter);
|
||||
}
|
||||
|
||||
public TargetAnyTarget(int minNumTargets, int maxNumTargets, FilterAnyTarget filter) {
|
||||
super(minNumTargets, maxNumTargets, filter, false);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue