From 4e1deb4ef09f6b65b6e3bc42c423fe3e28ac23cf Mon Sep 17 00:00:00 2001 From: lonelybud <139460769+lonelybud@users.noreply.github.com> Date: Sun, 31 Mar 2024 23:04:41 +0530 Subject: [PATCH] fix chat not seen by other players (#2900) --- src/util/chat.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/chat.hpp b/src/util/chat.hpp index a2997856..f02cbd96 100644 --- a/src/util/chat.hpp +++ b/src/util/chat.hpp @@ -21,7 +21,7 @@ namespace buf.Write(hnd.m_platform, sizeof(hnd.m_platform) * 8); if (hnd.m_platform == rage::rlPlatforms::PC) { - buf.WriteQWord(hnd.m_rockstar_id, sizeof(hnd.m_rockstar_id) * 8); + buf.WriteInt64(hnd.m_rockstar_id, sizeof(hnd.m_rockstar_id) * 8); buf.Write(hnd.m_padding, sizeof(hnd.m_padding) * 8); } }