fix some text

This commit is contained in:
xenohedron 2024-03-14 23:13:56 -04:00
parent b29a4e6349
commit 56ba6b1072
17 changed files with 55 additions and 42 deletions

View file

@ -26,18 +26,10 @@ public class TargetCreatureOrPlayer extends TargetImpl {
this(1, 1, new FilterCreatureOrPlayer());
}
public TargetCreatureOrPlayer(int numTargets) {
this(numTargets, numTargets, new FilterCreatureOrPlayer());
}
public TargetCreatureOrPlayer(FilterCreatureOrPlayer filter) {
this(1, 1, filter);
}
public TargetCreatureOrPlayer(int numTargets, int maxNumTargets) {
this(numTargets, maxNumTargets, new FilterCreatureOrPlayer());
}
public TargetCreatureOrPlayer(int minNumTargets, int maxNumTargets, FilterCreatureOrPlayer filter) {
this.minNumberOfTargets = minNumTargets;
this.maxNumberOfTargets = maxNumTargets;