diff options
author | David Athay <ko2fan@gmail.com> | 2008-04-16 16:02:32 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2008-04-16 16:02:32 +0000 |
commit | 34e6d6c9c6d13623b9adf00ff19081770c4d9f24 (patch) | |
tree | 0a09f9898293e62ccc2891c2d29b4581e44ee729 /src/net/chatserver/chatserver.cpp | |
parent | 0d9ac84ca12fbf0dc1592c9f13d0f4b700743f01 (diff) | |
download | mana-34e6d6c9c6d13623b9adf00ff19081770c4d9f24.tar.gz mana-34e6d6c9c6d13623b9adf00ff19081770c4d9f24.tar.bz2 mana-34e6d6c9c6d13623b9adf00ff19081770c4d9f24.tar.xz mana-34e6d6c9c6d13623b9adf00ff19081770c4d9f24.zip |
Removed private channels
Diffstat (limited to 'src/net/chatserver/chatserver.cpp')
-rw-r--r-- | src/net/chatserver/chatserver.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/net/chatserver/chatserver.cpp b/src/net/chatserver/chatserver.cpp index 67cb5796..9f2c871a 100644 --- a/src/net/chatserver/chatserver.cpp +++ b/src/net/chatserver/chatserver.cpp @@ -81,12 +81,9 @@ void Net::ChatServer::privMsg(const std::string &recipient, } void Net::ChatServer::registerChannel(const std::string &name, - const std::string &announcement, const std::string &password, - char isPrivate) + const std::string &announcement, const std::string &password) { MessageOut msg(PCMSG_REGISTER_CHANNEL); - - msg.writeInt8(isPrivate); msg.writeString(name); msg.writeString(announcement); msg.writeString(password); |