From 3967267e9df39cbe4c252cb7df01c5fd5593b401 Mon Sep 17 00:00:00 2001 From: Agetian Date: Wed, 3 May 2017 04:24:57 +0000 Subject: [PATCH] - isAnyMana is better for determining the nature of the ability for Cavern of Souls. --- forge-ai/src/main/java/forge/ai/ComputerUtilMana.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-ai/src/main/java/forge/ai/ComputerUtilMana.java b/forge-ai/src/main/java/forge/ai/ComputerUtilMana.java index 198d81ef614..1b96b9d940e 100644 --- a/forge-ai/src/main/java/forge/ai/ComputerUtilMana.java +++ b/forge-ai/src/main/java/forge/ai/ComputerUtilMana.java @@ -223,7 +223,7 @@ public class ComputerUtilMana { // to attempt to make the spell uncounterable when possible. if ((toPay == ManaCostShard.GENERIC || toPay == ManaCostShard.X) && ma.getHostCard().getName().equals("Cavern of Souls") - && !ma.getManaPart().canProduce("W")) { + && !ma.getManaPart().isAnyMana()) { continue; }