text fixes [WOE] etc. (#11035)

* Fix Callous Sell Sword text

* simple text fixes

* fix some target texts
This commit is contained in:
Susucre 2023-08-27 01:34:49 +02:00 committed by GitHub
parent c4e48a6f95
commit a9870b6ff8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 58 additions and 18 deletions

View file

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