[Bug Fix] Fix AA Reset Error Message (#4720)

* [Bug Fix] Fix AA Reset Error Message

* Update client.cpp

* Update client.cpp
This commit is contained in:
Alex King 2025-02-28 16:06:49 -05:00 committed by GitHub
parent 5296202e56
commit 7a2d2a0c51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -965,6 +965,10 @@ bool Client::SaveAA()
m_pp.aapoints_spent = aa_points_spent + m_epp.expended_aa;
if (v.empty()) {
return true;
}
return CharacterAlternateAbilitiesRepository::ReplaceMany(database, v);
}