Fix bots from loading AAs that are too high of a level for them.

This commit is contained in:
Natedog2012 2015-07-20 00:25:18 -07:00
parent c91374444b
commit 87b4640ff0

View File

@ -1279,6 +1279,11 @@ void Bot::LoadAAs() {
points = 0;
AA::Rank *current = ability->first;
if (current->level_req > GetLevel()) {
++iter;
continue;
}
while(current) {
if(!CanUseAlternateAdvancementRank(current)) {