summaryrefslogtreecommitdiff
path: root/src/net/chatserver/chatserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/chatserver/chatserver.cpp')
-rw-r--r--src/net/chatserver/chatserver.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/net/chatserver/chatserver.cpp b/src/net/chatserver/chatserver.cpp
index c6df7c83..a2dbefbb 100644
--- a/src/net/chatserver/chatserver.cpp
+++ b/src/net/chatserver/chatserver.cpp
@@ -80,17 +80,6 @@ void Net::ChatServer::privMsg(const std::string &recipient,
connection->send(msg);
}
-void Net::ChatServer::registerChannel(const std::string &name,
- const std::string &topic, const std::string &password)
-{
- MessageOut msg(PCMSG_REGISTER_CHANNEL);
- msg.writeString(name);
- msg.writeString(topic);
- msg.writeString(password);
-
- connection->send(msg);
-}
-
void Net::ChatServer::enterChannel(const std::string &channel, const std::string &password)
{
MessageOut msg(PCMSG_ENTER_CHANNEL);