diff options
author | madmaxoft <github@xoft.cz> | 2014-02-15 23:16:44 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-02-15 23:17:49 +0100 |
commit | 0f1f7583aeea65335b2ee051585a857b1142a927 (patch) | |
tree | d87a4a6c92ea5f144327d2e88d5bd5845cd668e8 /src/Root.h | |
parent | Merge pull request #679 from mc-server/NotchDeath (diff) | |
download | cuberite-0f1f7583aeea65335b2ee051585a857b1142a927.tar cuberite-0f1f7583aeea65335b2ee051585a857b1142a927.tar.gz cuberite-0f1f7583aeea65335b2ee051585a857b1142a927.tar.bz2 cuberite-0f1f7583aeea65335b2ee051585a857b1142a927.tar.lz cuberite-0f1f7583aeea65335b2ee051585a857b1142a927.tar.xz cuberite-0f1f7583aeea65335b2ee051585a857b1142a927.tar.zst cuberite-0f1f7583aeea65335b2ee051585a857b1142a927.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Root.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Root.h b/src/Root.h index 13e208b8d..a1a3ca6a2 100644 --- a/src/Root.h +++ b/src/Root.h @@ -20,7 +20,8 @@ class cPluginManager; class cServer; class cWorld; class cPlayer; -class cCommandOutputCallback ; +class cCommandOutputCallback; +class cCompositeChat; typedef cItemCallback<cPlayer> cPlayerListCallback; typedef cItemCallback<cWorld> cWorldListCallback; @@ -108,7 +109,7 @@ public: /// Finds a player from a partial or complete player name and calls the callback - case-insensitive bool FindAndDoWithPlayer(const AString & a_PlayerName, cPlayerListCallback & a_Callback); // >> EXPORTED IN MANUALBINDINGS << - void LoopWorldsAndBroadcastChat(const AString & a_Message, ChatPrefixCodes a_ChatPrefix); + void LoopWorldsAndBroadcastChat(const AString & a_Message, eMessageType a_ChatPrefix); void BroadcastChatJoin (const AString & a_Message) { LoopWorldsAndBroadcastChat(a_Message, mtJoin); } void BroadcastChatLeave (const AString & a_Message) { LoopWorldsAndBroadcastChat(a_Message, mtLeave); } void BroadcastChatDeath (const AString & a_Message) { LoopWorldsAndBroadcastChat(a_Message, mtDeath); } @@ -122,6 +123,7 @@ public: void BroadcastChatSuccess(const AString & a_Message) { LoopWorldsAndBroadcastChat(a_Message, mtSuccess); } void BroadcastChatWarning(const AString & a_Message) { LoopWorldsAndBroadcastChat(a_Message, mtWarning); } void BroadcastChatFatal (const AString & a_Message) { LoopWorldsAndBroadcastChat(a_Message, mtFailure); } + void BroadcastChat (const cCompositeChat & a_Message); /// Returns the textual description of the protocol version: 49 -> "1.4.4". Provided specifically for Lua API static AString GetProtocolVersionTextFromInt(int a_ProtocolVersionNum); |