From ef35b7bd0932fac2dd9d80d897096ace5be33e35 Mon Sep 17 00:00:00 2001 From: false_genesis Date: Mon, 4 Feb 2008 20:02:04 +0000 Subject: [PATCH] * added: also send own latency in ping packet --- src/Client/World/CMSGConstructor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Client/World/CMSGConstructor.cpp b/src/Client/World/CMSGConstructor.cpp index 59a7cac..927ea23 100644 --- a/src/Client/World/CMSGConstructor.cpp +++ b/src/Client/World/CMSGConstructor.cpp @@ -47,6 +47,7 @@ void WorldSession::SendPing(uint32 ping) return; WorldPacket packet; packet << ping; + packet << GetLagMS(); packet.SetOpcode(CMSG_PING); SendWorldPacket(packet); }