mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-11 15:58:36 +00:00
[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:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user