From 460be7854a236f0cb8650c21beb33d980fea99cc Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Sat, 31 Dec 2011 14:31:39 +0000 Subject: [PATCH] tweaked an ai change i made, found some lands (ie:cloudpost) are not considered either good or "dontknow" so they fall into lottery chance, all land that isn't considered good should fall under "dontknow" not lottery.... --- projects/mtg/src/AIPlayerBaka.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/mtg/src/AIPlayerBaka.cpp b/projects/mtg/src/AIPlayerBaka.cpp index 44b4eb72a..4fcb15b27 100644 --- a/projects/mtg/src/AIPlayerBaka.cpp +++ b/projects/mtg/src/AIPlayerBaka.cpp @@ -1660,7 +1660,7 @@ MTGCardInstance * AIPlayerBaka::FindCardToPlay(ManaCost * pMana, const char * ty { shouldPlayPercentage = 90; } - else if (BAKA_EFFECT_DONTKNOW == shouldPlay) + else if (BAKA_EFFECT_DONTKNOW == shouldPlay || card->isLand()) { //previously shouldPlayPercentage = 80;, I found this a little to high //for cards which AI had no idea how to use.