From 2b4838a15f69c2041bfb6892e4ad24e00087d4da Mon Sep 17 00:00:00 2001 From: Agetian Date: Tue, 11 Dec 2018 21:06:59 +0300 Subject: [PATCH] - Removed a commented out line (mana is reserved elsewhere). --- forge-ai/src/main/java/forge/ai/ComputerUtilAbility.java | 1 - 1 file changed, 1 deletion(-) diff --git a/forge-ai/src/main/java/forge/ai/ComputerUtilAbility.java b/forge-ai/src/main/java/forge/ai/ComputerUtilAbility.java index 057dc96252a..69a58434b2f 100644 --- a/forge-ai/src/main/java/forge/ai/ComputerUtilAbility.java +++ b/forge-ai/src/main/java/forge/ai/ComputerUtilAbility.java @@ -246,7 +246,6 @@ public class ComputerUtilAbility { SpellAbility combinedAb = ab.copyWithDefinedCost(new Cost(total, false)); // can we pay both costs? if (ComputerUtilMana.canPayManaCost(combinedAb, ai, 0)) { - //aic.reserveManaSourcesTillNextPriority(ab); // reserve mana for the second spell return Pair.of(ab, Integer.parseInt(dmgDef)); } }