mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
TargetSelection: fix trigger need to be Mandatory
This commit is contained in:
@@ -66,7 +66,8 @@ public class TargetSelection {
|
||||
private boolean bTargetingDone = false;
|
||||
|
||||
private boolean isMandatory() {
|
||||
return ability.isMandatory() || getTgt().getMandatory();
|
||||
// even if its an optionalTrigger, the targeting is still mandatory
|
||||
return ability.isTrigger() || getTgt().getMandatory();
|
||||
}
|
||||
|
||||
public final boolean chooseTargets(Integer numTargets) {
|
||||
|
||||
Reference in New Issue
Block a user