[Hot Fix] Add bool return to fix Client::RemoveAAPoints (#4176)

# Notes
- Was missing the `return true;` at the bottom.
This commit is contained in:
Alex King 2024-03-09 10:07:13 -05:00 committed by GitHub
parent 94af2843e3
commit 5013459824
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11502,6 +11502,8 @@ bool Client::RemoveAAPoints(uint32 points)
}
SendAlternateAdvancementStats();
return true;
}
void Client::AddAAPoints(uint32 points)