[Bug Fix] Fix data type of GetAggroCount() (#3470)

# Notes
- This is an `unsigned int`, not an `int`, so this fixes that.
This commit is contained in:
Alex King
2023-07-03 01:10:27 -04:00
committed by GitHub
parent a633784f78
commit dc28c8d485
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -4530,7 +4530,7 @@ bool Client::IsLeadershipEXPOn() {
}
int Client::GetAggroCount() {
uint32 Client::GetAggroCount() {
return AggroCount;
}