diff options
author | bibo38 <bibo38@users.noreply.github.com> | 2016-09-02 19:22:06 +0200 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-09-02 19:22:06 +0200 |
commit | 61078e8402dc289cca0ace12933a688660d10b03 (patch) | |
tree | 9fa0cb5e8037f06f24981e45f6ddac2b60554fcc /src/Protocol/Protocol19x.h | |
parent | Remove settings.ini world migration code (#3360) (diff) | |
download | cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.gz cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.bz2 cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.lz cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.xz cuberite-61078e8402dc289cca0ace12933a688660d10b03.tar.zst cuberite-61078e8402dc289cca0ace12933a688660d10b03.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol19x.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Protocol/Protocol19x.h b/src/Protocol/Protocol19x.h index 9124a5422..79180e3a7 100644 --- a/src/Protocol/Protocol19x.h +++ b/src/Protocol/Protocol19x.h @@ -259,10 +259,10 @@ protected: void WriteItem(cPacketizer & a_Pkt, const cItem & a_Item); /** Writes the metadata for the specified entity, not including the terminating 0xff. */ - void WriteEntityMetadata(cPacketizer & a_Pkt, const cEntity & a_Entity); + virtual void WriteEntityMetadata(cPacketizer & a_Pkt, const cEntity & a_Entity); /** Writes the mob-specific metadata for the specified mob */ - void WriteMobMetadata(cPacketizer & a_Pkt, const cMonster & a_Mob); + virtual void WriteMobMetadata(cPacketizer & a_Pkt, const cMonster & a_Mob); /** Writes the entity properties for the specified entity, including the Count field. */ void WriteEntityProperties(cPacketizer & a_Pkt, const cEntity & a_Entity); |