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/gui/chat.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/gui/chat.cpp')
-rw-r--r-- | src/gui/chat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index f6e95059..a0e7f036 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -333,7 +333,7 @@ void ChatWindow::chatSend(std::string const &nick, std::string const &msg, else if (command == "register") { chatLog("Requesting to register channel " + arg, BY_SERVER); - Net::ChatServer::registerChannel(arg, "", "", false); + Net::ChatServer::registerChannel(arg, "", ""); } else if (command == "join") { |