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....

This commit is contained in:
omegablast2002@yahoo.com
2011-12-31 14:31:39 +00:00
parent 2882724638
commit 460be7854a

View File

@@ -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.