diff options
author | mathiascode <8754153+mathiascode@users.noreply.github.com> | 2018-04-02 19:39:54 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2018-04-02 19:39:54 +0200 |
commit | a879778968c5f9eaae97026b42046371d382b489 (patch) | |
tree | c7b628dd5908306ba3e7aaa15562e365e50c725c /src/Root.h | |
parent | Ignore KDevelop project files (#4192) (diff) | |
download | cuberite-a879778968c5f9eaae97026b42046371d382b489.tar cuberite-a879778968c5f9eaae97026b42046371d382b489.tar.gz cuberite-a879778968c5f9eaae97026b42046371d382b489.tar.bz2 cuberite-a879778968c5f9eaae97026b42046371d382b489.tar.lz cuberite-a879778968c5f9eaae97026b42046371d382b489.tar.xz cuberite-a879778968c5f9eaae97026b42046371d382b489.tar.zst cuberite-a879778968c5f9eaae97026b42046371d382b489.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Root.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Root.h b/src/Root.h index 0735d9493..aad7ccb14 100644 --- a/src/Root.h +++ b/src/Root.h @@ -154,9 +154,12 @@ public: /** Send playerlist of all worlds to player */ void SendPlayerLists(cPlayer * a_DestPlayer); - /** Broadcast Player through all worlds */ + /** Broadcast playerlist addition through all worlds */ void BroadcastPlayerListsAddPlayer(const cPlayer & a_Player, const cClientHandle * a_Exclude = nullptr); + /** Broadcast playerlist removal through all worlds */ + void BroadcastPlayerListsRemovePlayer(const cPlayer & a_Player, const cClientHandle * a_Exclude = nullptr); + // tolua_begin /** Sends a chat message to all connected clients (in all worlds) */ |