Updated weight for card rating using by ai.

This commit is contained in:
magenoxx 2011-08-17 08:22:00 +04:00
parent 6dbef9fee0
commit 6e911e88fe
4 changed files with 1 additions and 1 deletions

View file

@ -49,7 +49,7 @@ public class RateCard {
} else {
type = 6;
}
int score = 3 * getCardRating(card) + type + getManaCostScore(card, allowedColors);
int score = 10 * getCardRating(card) + type + getManaCostScore(card, allowedColors);
return score;
}