[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
@@ -1432,7 +1432,7 @@ void Perl_Client_UnFreeze(Client* self)
self->SendAppearancePacket(AT_Anim, ANIM_STAND);
}
int Perl_Client_GetAggroCount(Client* self) // @categories Script Utility, Hate and Aggro
uint32 Perl_Client_GetAggroCount(Client* self) // @categories Script Utility, Hate and Aggro
{
return self->GetAggroCount();
}