diff options
author | madmaxoft <github@xoft.cz> | 2013-07-30 22:48:59 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-07-30 22:48:59 +0200 |
commit | e9f18f8b4fcf4ae7891b631765bcc49a4a183220 (patch) | |
tree | 8e44bb38c5602e8b36d595434c03bb00dc396287 /source/Protocol/Protocol125.cpp | |
parent | Added the "Edit Sign" packet sent to the client placing a sign. (diff) | |
download | cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.gz cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.bz2 cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.lz cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.xz cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.zst cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Protocol/Protocol125.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source/Protocol/Protocol125.cpp b/source/Protocol/Protocol125.cpp index 1f6dcdec9..1f2acf50c 100644 --- a/source/Protocol/Protocol125.cpp +++ b/source/Protocol/Protocol125.cpp @@ -782,6 +782,16 @@ void cProtocol125::SendSpawnVehicle(const cEntity & a_Vehicle, char a_VehicleTyp +void cProtocol125::SendTabCompletionResults(const AStringVector & a_Results) +{ + // This protocol version doesn't support tab completion + UNUSED(a_Results); +} + + + + + void cProtocol125::SendTeleportEntity(const cEntity & a_Entity) { cCSLock Lock(m_CSPacket); |