forked from External/mage
Add custom options for starting life total and starting hand size (#11259)
* add startHandSize / startLife to the custom option panel * use the custom startLife/startHandsize in all Game Modes
This commit is contained in:
parent
3e6097b70e
commit
f14479c53c
76 changed files with 1230 additions and 929 deletions
|
|
@ -34,8 +34,8 @@ public abstract class GameTinyLeadersImpl extends GameImpl {
|
|||
// (see rule 504, "Draw Step") of his or her first turn.
|
||||
protected boolean startingPlayerSkipsDraw = true;
|
||||
|
||||
public GameTinyLeadersImpl(MultiplayerAttackOption attackOption, RangeOfInfluence range, Mulligan mulligan, int startLife) {
|
||||
super(attackOption, range, mulligan, startLife, 50, 7);
|
||||
public GameTinyLeadersImpl(MultiplayerAttackOption attackOption, RangeOfInfluence range, Mulligan mulligan, int startLife, int startHandSize) {
|
||||
super(attackOption, range, mulligan, 50, startLife, startHandSize);
|
||||
}
|
||||
|
||||
protected GameTinyLeadersImpl(final GameTinyLeadersImpl game) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue