From 7bca7f3cb9390cf2bad282e427e3a7ec0b748614 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 13 Oct 2012 09:48:18 +0000 Subject: ProtoProxy: Fixed parsing of the PACKET_PLAYER_ABILITIES packet. git-svn-id: http://mc-server.googlecode.com/svn/trunk@955 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- ProtoProxy/Connection.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'ProtoProxy') diff --git a/ProtoProxy/Connection.cpp b/ProtoProxy/Connection.cpp index b0f63493b..8b8c1c85e 100644 --- a/ProtoProxy/Connection.cpp +++ b/ProtoProxy/Connection.cpp @@ -859,12 +859,13 @@ bool cConnection::HandleClientPing(void) bool cConnection::HandleClientPlayerAbilities(void) { - HANDLE_CLIENT_PACKET_READ(ReadChar, char, IsInvulnerable); - HANDLE_CLIENT_PACKET_READ(ReadChar, char, IsFlying); - HANDLE_CLIENT_PACKET_READ(ReadChar, char, CanFly); - HANDLE_CLIENT_PACKET_READ(ReadChar, char, IsInstaMine); + HANDLE_CLIENT_PACKET_READ(ReadChar, char, Flags); + HANDLE_CLIENT_PACKET_READ(ReadByte, Byte, FlyingSpeed); + HANDLE_CLIENT_PACKET_READ(ReadByte, Byte, WalkingSpeed); Log("Receives a PACKET_PLAYER_ABILITIES from the client:"); - Log(" Flags = %d, %d, %d, %d", IsInvulnerable, IsFlying, CanFly, IsInstaMine); + Log(" Flags = %d (0x%x)", Flags, Flags); + Log(" FlyingSpeed = %d", FlyingSpeed); + Log(" WalkingSpeed = %d", WalkingSpeed); COPY_TO_SERVER(); return true; } -- cgit v1.2.3