mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
Fix bots from loading AAs that are too high of a level for them.
This commit is contained in:
parent
c91374444b
commit
87b4640ff0
@ -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)) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user