Fixed Chasm Drake

This commit is contained in:
magenoxx 2011-08-17 08:21:28 +04:00
parent 4a84240632
commit 6dbef9fee0
2 changed files with 6 additions and 1 deletions

View file

@ -40,6 +40,11 @@ public class TargetControlledCreaturePermanent extends TargetControlledPermanent
this(1, 1, new FilterControlledCreaturePermanent(), false);
}
public TargetControlledCreaturePermanent(boolean required) {
this(1, 1, new FilterControlledCreaturePermanent(), false);
this.required = required;
}
public TargetControlledCreaturePermanent(int numTargets) {
this(numTargets, numTargets, new FilterControlledCreaturePermanent(), false);
}