mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Put commander life back to 40 even for 2 player
This commit is contained in:
@@ -146,14 +146,9 @@ public class RegisteredPlayer {
|
||||
}
|
||||
if (appliedVariants.contains(GameType.Commander)) {
|
||||
start.commander = deck.has(DeckSection.Commander) ? deck.get(DeckSection.Commander).get(0) : null;
|
||||
if (playerCount > 2) {
|
||||
start.setStartingLife(start.getStartingLife() + 20); // 903.7: ...each player sets his or her life total to 40
|
||||
// Modified for layering of variants to life +20
|
||||
}
|
||||
else { //Duel Commander has each player starting at 30 life instead of 40
|
||||
start.setStartingLife(start.getStartingLife() + 10);
|
||||
}
|
||||
}
|
||||
if (appliedVariants.contains(GameType.TinyLeaders)) {
|
||||
start.commander = deck.has(DeckSection.Commander) ? deck.get(DeckSection.Commander).get(0) : null;
|
||||
start.setStartingLife(start.getStartingLife() + 5);
|
||||
|
||||
Reference in New Issue
Block a user