diff options
author | Persson-dev <66266021+Persson-dev@users.noreply.github.com> | 2021-12-29 20:30:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-29 20:30:09 +0100 |
commit | 1edc6c8601f9d00751bf7c9f7fcc69d1e18bb46a (patch) | |
tree | 798914afc59b513341a86cbb5bd0918333104595 /src/Protocol/Protocol_1_9.cpp | |
parent | Improved farmer AI & Fixed entity loading functions (#5351) (diff) | |
download | cuberite-1edc6c8601f9d00751bf7c9f7fcc69d1e18bb46a.tar cuberite-1edc6c8601f9d00751bf7c9f7fcc69d1e18bb46a.tar.gz cuberite-1edc6c8601f9d00751bf7c9f7fcc69d1e18bb46a.tar.bz2 cuberite-1edc6c8601f9d00751bf7c9f7fcc69d1e18bb46a.tar.lz cuberite-1edc6c8601f9d00751bf7c9f7fcc69d1e18bb46a.tar.xz cuberite-1edc6c8601f9d00751bf7c9f7fcc69d1e18bb46a.tar.zst cuberite-1edc6c8601f9d00751bf7c9f7fcc69d1e18bb46a.zip |
Diffstat (limited to 'src/Protocol/Protocol_1_9.cpp')
-rw-r--r-- | src/Protocol/Protocol_1_9.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Protocol/Protocol_1_9.cpp b/src/Protocol/Protocol_1_9.cpp index 2cc087682..a36e3f53d 100644 --- a/src/Protocol/Protocol_1_9.cpp +++ b/src/Protocol/Protocol_1_9.cpp @@ -2110,9 +2110,20 @@ void cProtocol_1_9_0::WriteMobMetadata(cPacketizer & a_Pkt, const cMonster & a_M case mtSkeleton: { + auto & Skeleton = static_cast<const cSkeleton &>(a_Mob); a_Pkt.WriteBEUInt8(11); a_Pkt.WriteBEUInt8(METADATA_TYPE_VARINT); a_Pkt.WriteVarInt32(0); + + // Index 5 and 12 used for charging bow client animation. + a_Pkt.WriteBEUInt8(5); + a_Pkt.WriteBEUInt8(METADATA_TYPE_BYTE); + a_Pkt.WriteBEInt8(0x02 | (Skeleton.IsChargingBow() ? 0x01 : 0x00)); + + a_Pkt.WriteBEUInt8(12); + a_Pkt.WriteBEUInt8(METADATA_TYPE_BYTE); + a_Pkt.WriteBool(Skeleton.IsChargingBow()); + break; } case mtSlime: |