diff --git a/projects/mtg/src/AIPlayerBaka.cpp b/projects/mtg/src/AIPlayerBaka.cpp index 53542f8fd..33a66c45e 100644 --- a/projects/mtg/src/AIPlayerBaka.cpp +++ b/projects/mtg/src/AIPlayerBaka.cpp @@ -1801,12 +1801,16 @@ MTGCardInstance * AIPlayerBaka::FindCardToPlay(ManaCost * pMana, const char * ty { shouldPlayPercentage = 90; } - else if (BAKA_EFFECT_DONTKNOW == shouldPlay || card->isLand()) + else if (BAKA_EFFECT_DONTKNOW == shouldPlay) { //previously shouldPlayPercentage = 80;, I found this a little to high //for cards which AI had no idea how to use. shouldPlayPercentage = 60; } + else if (card->isLand()) + { + shouldPlayPercentage = 90; + } else { // shouldPlay == baka_effect_bad giving it a 1 for odd ball lottery chance.