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/ClientHandle.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/ClientHandle.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 469095b19..fc41a4f7c 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -2271,6 +2271,15 @@ void cClientHandle::SendChat(const cCompositeChat & a_Message) +void cClientHandle::SendChatRaw(const AString & a_MessageRaw, eChatType a_Type) +{ + m_Protocol->SendChatRaw(a_MessageRaw, a_Type); +} + + + + + void cClientHandle::SendChatAboveActionBar(const AString & a_Message, eMessageType a_ChatPrefix, const AString & a_AdditionalData) { cWorld * World = GetPlayer()->GetWorld(); |