mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
* Commander - Players no longer go to a sideboarding phase during caommander matches.
This commit is contained in:
parent
70fa982f7c
commit
751365124e
6 changed files with 13 additions and 1 deletions
|
|
@ -43,6 +43,7 @@ public abstract class MatchType implements Serializable {
|
|||
protected int playersPerTeam;
|
||||
protected boolean useRange;
|
||||
protected boolean useAttackOption;
|
||||
protected boolean sideboardingAllowed;
|
||||
|
||||
protected MatchType() {}
|
||||
|
||||
|
|
@ -54,6 +55,7 @@ public abstract class MatchType implements Serializable {
|
|||
this.playersPerTeam = matchType.playersPerTeam;
|
||||
this.useRange = matchType.useRange;
|
||||
this.useAttackOption = matchType.useAttackOption;
|
||||
this.sideboardingAllowed = matchType.sideboardingAllowed;
|
||||
}
|
||||
|
||||
public abstract MatchType copy();
|
||||
|
|
@ -91,4 +93,8 @@ public abstract class MatchType implements Serializable {
|
|||
return useAttackOption;
|
||||
}
|
||||
|
||||
public boolean isSideboardingAllowed() {
|
||||
return sideboardingAllowed;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue