diff options
author | Mattes D <github@xoft.cz> | 2015-03-14 22:44:04 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-03-14 22:44:04 +0100 |
commit | 65d2ef32e920580ab5408bd1e2fcb3da42c8eec1 (patch) | |
tree | bfbef765d31cf6b78490f013dad5d600e785195e /src/Protocol | |
parent | Merge pull request #1808 from tumultenrx/master (diff) | |
parent | Reverted non-functional changes (diff) | |
download | cuberite-65d2ef32e920580ab5408bd1e2fcb3da42c8eec1.tar cuberite-65d2ef32e920580ab5408bd1e2fcb3da42c8eec1.tar.gz cuberite-65d2ef32e920580ab5408bd1e2fcb3da42c8eec1.tar.bz2 cuberite-65d2ef32e920580ab5408bd1e2fcb3da42c8eec1.tar.lz cuberite-65d2ef32e920580ab5408bd1e2fcb3da42c8eec1.tar.xz cuberite-65d2ef32e920580ab5408bd1e2fcb3da42c8eec1.tar.zst cuberite-65d2ef32e920580ab5408bd1e2fcb3da42c8eec1.zip |
Diffstat (limited to 'src/Protocol')
-rw-r--r-- | src/Protocol/Protocol18x.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Protocol/Protocol18x.cpp b/src/Protocol/Protocol18x.cpp index 22280f800..56e3783b6 100644 --- a/src/Protocol/Protocol18x.cpp +++ b/src/Protocol/Protocol18x.cpp @@ -2105,9 +2105,7 @@ void cProtocol180::HandlePacketLoginStart(cByteBuffer & a_ByteBuffer) void cProtocol180::HandlePacketAnimation(cByteBuffer & a_ByteBuffer) { - HANDLE_READ(a_ByteBuffer, ReadBEInt, int, EntityID); - HANDLE_READ(a_ByteBuffer, ReadByte, Byte, Animation); - m_Client->HandleAnimation(Animation); + m_Client->HandleAnimation(1); // Packet exists solely for arm-swing notification } |