diff options
Diffstat (limited to 'src/chat-server/chathandler.hpp')
-rw-r--r-- | src/chat-server/chathandler.hpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/chat-server/chathandler.hpp b/src/chat-server/chathandler.hpp index 4e5b48b0..6a0cbc01 100644 --- a/src/chat-server/chathandler.hpp +++ b/src/chat-server/chathandler.hpp @@ -161,12 +161,6 @@ class ChatHandler : public ConnectionHandler handleRegisterChannelMessage(ChatClient &client, MessageIn &msg); /** - * Deal with channel unregistering. - */ - void - handleUnregisterChannelMessage(ChatClient &client, MessageIn &msg); - - /** * Deal with player entering channel. */ void @@ -277,22 +271,6 @@ class ChatHandler : public ConnectionHandler void sendInChannel(ChatChannel *channel, MessageOut &msg); /** - * Send user joined message. - * - * @param channel the channel to send the message in, must not be NULL - * @param name the name of the user who joined - */ - void sendUserJoined(ChatChannel *channel, const std::string &name); - - /** - * Send user left message. - * - * @param channel the channel to send the message in, must not be NULL - * @param name the name of the user who left - */ - void sendUserLeft(ChatChannel *channel, const std::string &name); - - /** * Retrieves the guild channel or creates one automatically * Automatically makes client join it * @param The name of the guild (and therefore the channel) |