- For triggers with no Valid Target Candidates, just cancel them instead of asking for targets.

This commit is contained in:
Sol
2012-08-22 02:31:30 +00:00
parent 946be4d8f4
commit 15d3a1ffa7

View File

@@ -214,6 +214,13 @@ public class TargetSelection {
}
}
if (!this.target.hasCandidates(this.ability, true)) {
// Cancel ability if there aren't any valid Candidates
this.bCancel = true;
this.req.finishedTargeting();
return false;
}
this.chooseValidInput();
return false;