diff options
author | Mattes D <github@xoft.cz> | 2015-01-18 22:43:35 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-01-18 22:43:35 +0100 |
commit | 5ac3a23586d746eae27fb2375cfd0696d512704b (patch) | |
tree | d1e9bbe8f47732542d755a53d9a363997ecee2f4 /src/ClientHandle.h | |
parent | Fixed various warnings. (diff) | |
download | cuberite-5ac3a23586d746eae27fb2375cfd0696d512704b.tar cuberite-5ac3a23586d746eae27fb2375cfd0696d512704b.tar.gz cuberite-5ac3a23586d746eae27fb2375cfd0696d512704b.tar.bz2 cuberite-5ac3a23586d746eae27fb2375cfd0696d512704b.tar.lz cuberite-5ac3a23586d746eae27fb2375cfd0696d512704b.tar.xz cuberite-5ac3a23586d746eae27fb2375cfd0696d512704b.tar.zst cuberite-5ac3a23586d746eae27fb2375cfd0696d512704b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientHandle.h b/src/ClientHandle.h index 5e10bb52f..03ae38cfd 100644 --- a/src/ClientHandle.h +++ b/src/ClientHandle.h @@ -251,10 +251,10 @@ public: // Calls that cProtocol descendants use to report state: void PacketBufferFull(void); void PacketUnknown(UInt32 a_PacketType); - void PacketError(unsigned char a_PacketType); + void PacketError(UInt32 a_PacketType); // Calls that cProtocol descendants use for handling packets: - void HandleAnimation(char a_Animation); + void HandleAnimation(int a_Animation); /** Called when the protocol receives a MC|ItemName plugin message, indicating that the player named an item in the anvil UI. */ |