Fix AA issue

This commit is contained in:
Michael Cook (mackal) 2014-09-23 17:40:17 -04:00
parent 7cef4d8fe9
commit e039f6d2c6

View File

@ -720,7 +720,7 @@ void Client::Handle_Connect_OP_ZoneEntry(const EQApplicationPacket *app) {
for (auto row = results.begin(); row != results.end(); ++row) { for (auto row = results.begin(); row != results.end(); ++row) {
i = atoi(row[0]); i = atoi(row[0]);
m_pp.aa_array[i].AA = atoi(row[1]); m_pp.aa_array[i].AA = atoi(row[1]);
m_pp.aa_array[i].value = atoi(row[1]); m_pp.aa_array[i].value = atoi(row[2]);
aa[i]->AA = atoi(row[1]); aa[i]->AA = atoi(row[1]);
aa[i]->value = atoi(row[2]); aa[i]->value = atoi(row[2]);
} }