diff options
author | Lukas Pioch <lukas@zgow.de> | 2016-09-22 11:51:22 +0200 |
---|---|---|
committer | Lukas Pioch <lukas@zgow.de> | 2016-10-21 11:17:39 +0200 |
commit | b088123d1818b9b3585032906036778128c76bfc (patch) | |
tree | e73bb368cc26cf3c6b5041bc27ae818ec50a25f9 /src/Protocol/Protocol19x.cpp | |
parent | StyleCheck: Add "else has to be on a separate line" (#3412) (diff) | |
download | cuberite-b088123d1818b9b3585032906036778128c76bfc.tar cuberite-b088123d1818b9b3585032906036778128c76bfc.tar.gz cuberite-b088123d1818b9b3585032906036778128c76bfc.tar.bz2 cuberite-b088123d1818b9b3585032906036778128c76bfc.tar.lz cuberite-b088123d1818b9b3585032906036778128c76bfc.tar.xz cuberite-b088123d1818b9b3585032906036778128c76bfc.tar.zst cuberite-b088123d1818b9b3585032906036778128c76bfc.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol19x.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Protocol/Protocol19x.cpp b/src/Protocol/Protocol19x.cpp index 6e26b2012..5f3b9ec27 100644 --- a/src/Protocol/Protocol19x.cpp +++ b/src/Protocol/Protocol19x.cpp @@ -293,6 +293,20 @@ void cProtocol190::SendChat(const cCompositeChat & a_Message, eChatType a_Type, +void cProtocol190::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, 0x0f); // Chat Message packet + Pkt.WriteString(a_MessageRaw); + Pkt.WriteBEInt8(a_Type); +} + + + + + void cProtocol190::SendChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataSerializer & a_Serializer) { ASSERT(m_State == 3); // In game mode? |