diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-08-28 20:19:24 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-08-28 20:19:24 -0300 |
| commit | 9f07f7e53cff91363dea3884f7ac046c41f65612 (patch) | |
| tree | 15b23e6f6b0aef8ce6ea429e91cfdec89ef8550f /src/sending.cc | |
| parent | c670fea4acd1692f32956de5d641201830b123b0 (diff) | |
| download | game-9f07f7e53cff91363dea3884f7ac046c41f65612.tar.gz game-9f07f7e53cff91363dea3884f7ac046c41f65612.zip | |
fix buddy status causing a client assertion
Diffstat (limited to 'src/sending.cc')
| -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 329635b..5a5a969 100644 --- a/src/sending.cc +++ b/src/sending.cc @@ -1707,7 +1707,7 @@ void SendBuddyStatus(TConnection *Connection, uint32 CharacterID, bool Online){ }else{ SendByte(Connection, SV_CMD_BUDDY_OFFLINE); } - SendWord(Connection, CharacterID); + SendQuad(Connection, CharacterID); FinishSendData(Connection); } |
