diff options
author | Lukas Pioch <lukas@zgow.de> | 2016-10-23 22:52:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-23 22:52:10 +0200 |
commit | 824f5dbbd6b88226b6899b7566fecb3af2cc6d58 (patch) | |
tree | e73bb368cc26cf3c6b5041bc27ae818ec50a25f9 /src/Protocol/Protocol18x.cpp | |
parent | StyleCheck: Add "else has to be on a separate line" (#3412) (diff) | |
parent | Added SendMessageRaw for sending json string. (diff) | |
download | cuberite-824f5dbbd6b88226b6899b7566fecb3af2cc6d58.tar cuberite-824f5dbbd6b88226b6899b7566fecb3af2cc6d58.tar.gz cuberite-824f5dbbd6b88226b6899b7566fecb3af2cc6d58.tar.bz2 cuberite-824f5dbbd6b88226b6899b7566fecb3af2cc6d58.tar.lz cuberite-824f5dbbd6b88226b6899b7566fecb3af2cc6d58.tar.xz cuberite-824f5dbbd6b88226b6899b7566fecb3af2cc6d58.tar.zst cuberite-824f5dbbd6b88226b6899b7566fecb3af2cc6d58.zip |
Diffstat (limited to 'src/Protocol/Protocol18x.cpp')
-rw-r--r-- | src/Protocol/Protocol18x.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Protocol/Protocol18x.cpp b/src/Protocol/Protocol18x.cpp index d75ab3a5c..0679219a9 100644 --- a/src/Protocol/Protocol18x.cpp +++ b/src/Protocol/Protocol18x.cpp @@ -284,6 +284,20 @@ void cProtocol180::SendChat(const cCompositeChat & a_Message, eChatType a_Type, +void cProtocol180::SendChatRaw(const AString & a_MessageRaw, eChatType a_Type) +{ + ASSERT(m_State == 3); // In game mode? + + // Send the json string to the client: + cPacketizer Pkt(*this, 0x02); + Pkt.WriteString(a_MessageRaw); + Pkt.WriteBEInt8(a_Type); +} + + + + + void cProtocol180::SendChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataSerializer & a_Serializer) { ASSERT(m_State == 3); // In game mode? |