diff options
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) */ |