diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-09-12 00:36:46 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-09-12 00:36:46 +0200 |
commit | a02d96d1f574ed08a50129413fca71154354b300 (patch) | |
tree | 71f2efac892520e43cc1374c2505eae2f1e2f71a /src/Protocol | |
parent | 1.8: Fixed inventory open packet. (diff) | |
download | cuberite-a02d96d1f574ed08a50129413fca71154354b300.tar cuberite-a02d96d1f574ed08a50129413fca71154354b300.tar.gz cuberite-a02d96d1f574ed08a50129413fca71154354b300.tar.bz2 cuberite-a02d96d1f574ed08a50129413fca71154354b300.tar.lz cuberite-a02d96d1f574ed08a50129413fca71154354b300.tar.xz cuberite-a02d96d1f574ed08a50129413fca71154354b300.tar.zst cuberite-a02d96d1f574ed08a50129413fca71154354b300.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol18x.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Protocol/Protocol18x.cpp b/src/Protocol/Protocol18x.cpp index 04af848dc..abc9f7e60 100644 --- a/src/Protocol/Protocol18x.cpp +++ b/src/Protocol/Protocol18x.cpp @@ -3223,7 +3223,7 @@ void cProtocol180::cPacketizer::WriteMobMetadata(const cMonster & a_Mob) case cMonster::mtEnderman: { - WriteByte(0x10); + WriteByte(0x30); WriteByte((Byte)(((const cEnderman &)a_Mob).GetCarriedBlock())); WriteByte(0x11); WriteByte((Byte)(((const cEnderman &)a_Mob).GetCarriedMeta())); |