mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 13:16:39 +00:00
[Bug Fix] Fix #findaa and GetAAName(). (#2774)
# Notes - These were not properly checking every possible AA ID.
This commit is contained in:
@@ -35,7 +35,7 @@ void command_findaa(Client *c, const Seperator *sep)
|
||||
std::map<int, std::string> ordered_aas;
|
||||
|
||||
for (const auto& a : zone->aa_abilities) {
|
||||
ordered_aas[a.second.get()->id] = a.second.get()->name;
|
||||
ordered_aas[a.second.get()->first->id] = a.second.get()->name;
|
||||
}
|
||||
|
||||
int found_count = 0;
|
||||
|
||||
Reference in New Issue
Block a user