From 6289e9a1f5bd75a4b092079dba717c7b199ec9fc Mon Sep 17 00:00:00 2001
From: Evan Kranzler <theelk801@gmail.com>
Date: Tue, 8 Oct 2019 22:48:09 -0400
Subject: [PATCH] updated Freeform Commander Duel life total to 40 (fixes
 #6010)

---
 .../src/mage/game/FreeformCommanderDuelMatch.java               | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Mage.Server.Plugins/Mage.Game.FreeformCommanderDuel/src/mage/game/FreeformCommanderDuelMatch.java b/Mage.Server.Plugins/Mage.Game.FreeformCommanderDuel/src/mage/game/FreeformCommanderDuelMatch.java
index 57422d41be..f1d1ea7427 100644
--- a/Mage.Server.Plugins/Mage.Game.FreeformCommanderDuel/src/mage/game/FreeformCommanderDuelMatch.java
+++ b/Mage.Server.Plugins/Mage.Game.FreeformCommanderDuel/src/mage/game/FreeformCommanderDuelMatch.java
@@ -15,7 +15,7 @@ public class FreeformCommanderDuelMatch extends MatchImpl {
 
     @Override
     public void startGame() throws GameException {
-        int startLife = 20;
+        int startLife = 40;
 
         Mulligan mulligan = options.getMulliganType().getMulligan(options.getFreeMulligans());
         FreeformCommanderDuel game = new FreeformCommanderDuel(options.getAttackOption(), options.getRange(), mulligan, startLife);