From bd6753da0b66d38cd293ce5df54118be3facc8eb Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 31 Dec 2014 09:52:48 +0100 Subject: [PATCH] * Duel Commander - Fixed that for duel commander muliplayer games the specific (e.g. starting life) duel commander rule changes did not take place. --- .../src/mage/game/CommanderFreeForAllMatch.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Server.Plugins/Mage.Game.CommanderFreeForAll/src/mage/game/CommanderFreeForAllMatch.java b/Mage.Server.Plugins/Mage.Game.CommanderFreeForAll/src/mage/game/CommanderFreeForAllMatch.java index 29abd7d9199..3e6caf776cb 100644 --- a/Mage.Server.Plugins/Mage.Game.CommanderFreeForAll/src/mage/game/CommanderFreeForAllMatch.java +++ b/Mage.Server.Plugins/Mage.Game.CommanderFreeForAll/src/mage/game/CommanderFreeForAllMatch.java @@ -45,7 +45,7 @@ public class CommanderFreeForAllMatch extends MatchImpl { public void startGame() throws GameException { int startLife = 40; boolean alsoLibrary = false; - if (options.getDeckType().equals("Duel Commander")) { + if (options.getDeckType().equals("Variant Magic - Duel Commander")) { startLife = 30; alsoLibrary = true; }