summaryrefslogtreecommitdiffstats
path: root/src/ClientHandle.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-01-22 14:33:36 +0100
committerMattes D <github@xoft.cz>2015-01-22 14:33:36 +0100
commitf36a00c6037fb4ab2a5d78dbebefa067685f9f63 (patch)
treef0ea4baa88699ac537a0f671b503d4993376927d /src/ClientHandle.h
parentFixed type conversion warnings. (diff)
parentFixed warnings in StringUtils. (diff)
downloadcuberite-f36a00c6037fb4ab2a5d78dbebefa067685f9f63.tar
cuberite-f36a00c6037fb4ab2a5d78dbebefa067685f9f63.tar.gz
cuberite-f36a00c6037fb4ab2a5d78dbebefa067685f9f63.tar.bz2
cuberite-f36a00c6037fb4ab2a5d78dbebefa067685f9f63.tar.lz
cuberite-f36a00c6037fb4ab2a5d78dbebefa067685f9f63.tar.xz
cuberite-f36a00c6037fb4ab2a5d78dbebefa067685f9f63.tar.zst
cuberite-f36a00c6037fb4ab2a5d78dbebefa067685f9f63.zip
Diffstat (limited to 'src/ClientHandle.h')
-rw-r--r--src/ClientHandle.h4
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. */