diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2021-03-15 18:06:58 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2021-03-18 00:44:59 +0100 |
commit | e3fe9e5e93fbf8ce26a61719fdb4ccd9a627d37a (patch) | |
tree | 81cc0687c9ffd438dff76e646dc81a5a6b54377f /src/Protocol/Protocol_1_9.h | |
parent | Mob heads, banners cannot be used (diff) | |
download | cuberite-e3fe9e5e93fbf8ce26a61719fdb4ccd9a627d37a.tar cuberite-e3fe9e5e93fbf8ce26a61719fdb4ccd9a627d37a.tar.gz cuberite-e3fe9e5e93fbf8ce26a61719fdb4ccd9a627d37a.tar.bz2 cuberite-e3fe9e5e93fbf8ce26a61719fdb4ccd9a627d37a.tar.lz cuberite-e3fe9e5e93fbf8ce26a61719fdb4ccd9a627d37a.tar.xz cuberite-e3fe9e5e93fbf8ce26a61719fdb4ccd9a627d37a.tar.zst cuberite-e3fe9e5e93fbf8ce26a61719fdb4ccd9a627d37a.zip |
Diffstat (limited to 'src/Protocol/Protocol_1_9.h')
-rw-r--r-- | src/Protocol/Protocol_1_9.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Protocol/Protocol_1_9.h b/src/Protocol/Protocol_1_9.h index cdaeaeed9..be2af147c 100644 --- a/src/Protocol/Protocol_1_9.h +++ b/src/Protocol/Protocol_1_9.h @@ -113,6 +113,9 @@ protected: /** Sends the entity type and entity-dependent data required for the entity to initially spawn. */ virtual void SendEntitySpawn(const cEntity & a_Entity, const UInt8 a_ObjectType, const Int32 a_ObjectData) override; + /** Writes the block entity data for the specified block entity into the packet. */ + virtual void WriteBlockEntity(cFastNBTWriter & a_Writer, const cBlockEntity & a_BlockEntity) override; + /** Writes the item data into a packet. */ virtual void WriteItem(cPacketizer & a_Pkt, const cItem & a_Item) override; @@ -125,9 +128,6 @@ protected: /** Writes the entity properties for the specified entity, including the Count field. */ virtual void WriteEntityProperties(cPacketizer & a_Pkt, const cEntity & a_Entity) override; - /** Writes the block entity data for the specified block entity into the packet. */ - virtual void WriteBlockEntity(cPacketizer & a_Pkt, const cBlockEntity & a_BlockEntity) override; - /** Types used within metadata */ enum eMetadataType { |