summaryrefslogtreecommitdiffstats
path: root/src/ClientHandle.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-06-03 09:49:28 +0200
committerMattes D <github@xoft.cz>2015-06-03 09:49:28 +0200
commit1f2c9b226ca9287237d4489e08419076f4a87620 (patch)
treef5e5b669b0f8c3fe98b39133c5772df2db6ad5c0 /src/ClientHandle.h
parentMerge pull request #2190 from mc-server/CrashDumpArgs (diff)
parentAdded system and above action bar chat messages (diff)
downloadcuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar
cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar.gz
cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar.bz2
cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar.lz
cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar.xz
cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.tar.zst
cuberite-1f2c9b226ca9287237d4489e08419076f4a87620.zip
Diffstat (limited to 'src/ClientHandle.h')
-rw-r--r--src/ClientHandle.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ClientHandle.h b/src/ClientHandle.h
index bcfa55825..13b5f87e4 100644
--- a/src/ClientHandle.h
+++ b/src/ClientHandle.h
@@ -150,6 +150,10 @@ public: // tolua_export
void SendBlockChanges (int a_ChunkX, int a_ChunkZ, const sSetBlockVector & a_Changes);
void SendChat (const AString & a_Message, eMessageType a_ChatPrefix, const AString & a_AdditionalData = "");
void SendChat (const cCompositeChat & a_Message);
+ void SendChatAboveActionBar (const AString & a_Message, eMessageType a_ChatPrefix, const AString & a_AdditionalData = "");
+ void SendChatAboveActionBar (const cCompositeChat & a_Message);
+ void SendChatSystem (const AString & a_Message, eMessageType a_ChatPrefix, const AString & a_AdditionalData = "");
+ void SendChatSystem (const cCompositeChat & a_Message);
void SendChunkData (int a_ChunkX, int a_ChunkZ, cChunkDataSerializer & a_Serializer);
void SendCollectEntity (const cEntity & a_Entity, const cPlayer & a_Player);
void SendDestroyEntity (const cEntity & a_Entity);