[LTC] Implement Elrond of the White Council (#10731)

This commit is contained in:
Susucre 2023-08-03 06:26:19 +02:00 committed by GitHub
parent 3cb22932a0
commit 23781ecb37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 194 additions and 2 deletions

View file

@ -17,11 +17,17 @@ public class TwoChoiceVote extends VoteHandler<Boolean> {
private final String choice1;
private final String choice2;
private final Outcome outcome;
private final boolean secret;
public TwoChoiceVote(String choice1, String choice2, Outcome outcome) {
this(choice1, choice2, outcome, false);
}
public TwoChoiceVote(String choice1, String choice2, Outcome outcome, boolean secret) {
this.choice1 = choice1;
this.choice2 = choice2;
this.outcome = outcome;
this.secret = secret;
}
@Override

View file

@ -6,7 +6,6 @@ import mage.filter.common.FilterCreaturePermanent;
import mage.target.TargetPermanent;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class TargetCreaturePermanent extends TargetPermanent {
@ -31,7 +30,7 @@ public class TargetCreaturePermanent extends TargetPermanent {
super(minNumTargets, maxNumTargets, filter, notTarget);
}
public TargetCreaturePermanent(final TargetCreaturePermanent target) {
protected TargetCreaturePermanent(final TargetCreaturePermanent target) {
super(target);
}