diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-08-17 13:33:41 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-08-17 13:33:41 -0300 |
| commit | b3fa79aefb24b62ee9cfefd5bc0c9d676418a99e (patch) | |
| tree | effd2011cd019e0f9686d5a1ab3c656a586f9971 /src | |
| parent | 9145ae949e716ee15c94e9ce2104623b60786671 (diff) | |
| download | game-b3fa79aefb24b62ee9cfefd5bc0c9d676418a99e.tar.gz game-b3fa79aefb24b62ee9cfefd5bc0c9d676418a99e.zip | |
fix problem with VIP data causing a client assertion
Diffstat (limited to 'src')
| -rw-r--r-- | src/sending.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sending.cc b/src/sending.cc index e6e5747..329635b 100644 --- a/src/sending.cc +++ b/src/sending.cc @@ -1691,7 +1691,7 @@ void SendBuddyData(TConnection *Connection, uint32 CharacterID, const char *Name } SendByte(Connection, SV_CMD_BUDDY_DATA); - SendWord(Connection, CharacterID); + SendQuad(Connection, CharacterID); SendString(Connection, Name); SendByte(Connection, (Online ? 1 : 0)); FinishSendData(Connection); |
