diff options
author | Alexander Harkness <me@bearbin.net> | 2018-08-26 16:52:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-26 16:52:39 +0200 |
commit | c4f43cd8ec0d31705aef105c9b2bb0c26f976bf6 (patch) | |
tree | fafb866d829cb18c0c94cb250f1f4a043f20e403 /src/Protocol/Protocol.h | |
parent | Circle 2.0: Use workspace instead of cache (#4291) (diff) | |
download | cuberite-c4f43cd8ec0d31705aef105c9b2bb0c26f976bf6.tar cuberite-c4f43cd8ec0d31705aef105c9b2bb0c26f976bf6.tar.gz cuberite-c4f43cd8ec0d31705aef105c9b2bb0c26f976bf6.tar.bz2 cuberite-c4f43cd8ec0d31705aef105c9b2bb0c26f976bf6.tar.lz cuberite-c4f43cd8ec0d31705aef105c9b2bb0c26f976bf6.tar.xz cuberite-c4f43cd8ec0d31705aef105c9b2bb0c26f976bf6.tar.zst cuberite-c4f43cd8ec0d31705aef105c9b2bb0c26f976bf6.zip |
Diffstat (limited to 'src/Protocol/Protocol.h')
-rw-r--r-- | src/Protocol/Protocol.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/Protocol/Protocol.h b/src/Protocol/Protocol.h index 1a912f8f9..52dd7d0df 100644 --- a/src/Protocol/Protocol.h +++ b/src/Protocol/Protocol.h @@ -148,7 +148,7 @@ public: virtual void SendDetachEntity (const cEntity & a_Entity, const cEntity & a_PreviousVehicle) = 0; virtual void SendDisconnect (const AString & a_Reason) = 0; virtual void SendEditSign (int a_BlockX, int a_BlockY, int a_BlockZ) = 0; ///< Request the client to open up the sign editor for the sign (1.6+) - virtual void SendEntityEffect (const cEntity & a_Entity, int a_EffectID, int a_Amplifier, short a_Duration) = 0; + virtual void SendEntityEffect (const cEntity & a_Entity, int a_EffectID, int a_Amplifier, int a_Duration) = 0; virtual void SendEntityEquipment (const cEntity & a_Entity, short a_SlotNum, const cItem & a_Item) = 0; virtual void SendEntityHeadLook (const cEntity & a_Entity) = 0; virtual void SendEntityLook (const cEntity & a_Entity) = 0; @@ -249,8 +249,3 @@ protected: The cPacketizer's destructor calls this to send the contained packet; protocol may transform the data (compression in 1.8 etc). */ virtual void SendPacket(cPacketizer & a_Packet) = 0; } ; - - - - - |