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/ProtocolRecognizer.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/ProtocolRecognizer.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source/Protocol/ProtocolRecognizer.cpp b/source/Protocol/ProtocolRecognizer.cpp index 3cff9789e..290f2df75 100644 --- a/source/Protocol/ProtocolRecognizer.cpp +++ b/source/Protocol/ProtocolRecognizer.cpp @@ -511,6 +511,16 @@ void cProtocolRecognizer::SendSpawnVehicle(const cEntity & a_Vehicle, char a_Veh +void cProtocolRecognizer::SendTabCompletionResults(const AStringVector & a_Results) +{ + ASSERT(m_Protocol != NULL); + m_Protocol->SendTabCompletionResults(a_Results); +} + + + + + void cProtocolRecognizer::SendTeleportEntity(const cEntity & a_Entity) { ASSERT(m_Protocol != NULL); |