summaryrefslogtreecommitdiffstats
path: root/ProtoProxy/Connection.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ProtoProxy/Connection.cpp11
1 files changed, 6 insertions, 5 deletions
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;
}