diff options
author | Ira Rice <irarice@gmail.com> | 2009-02-06 21:52:19 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-06 21:52:19 -0700 |
commit | 876f55d0624008a87f0ee6cc2e40895a4fe9f90b (patch) | |
tree | 4b9a1eb8098c9a30d8e3353768bb33aac1dd2abb | |
parent | 1458c6b808afaf3af2f1f50f1988427edf64826c (diff) | |
download | mana-client-876f55d0624008a87f0ee6cc2e40895a4fe9f90b.tar.gz mana-client-876f55d0624008a87f0ee6cc2e40895a4fe9f90b.tar.bz2 mana-client-876f55d0624008a87f0ee6cc2e40895a4fe9f90b.tar.xz mana-client-876f55d0624008a87f0ee6cc2e40895a4fe9f90b.zip |
Fixed the help function so that the help commands on help commands would
work.
Signed-off-by: Ira Rice <irarice@gmail.com>
-rw-r--r-- | src/gui/chat.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index b53552a6..067c9e08 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -434,7 +434,6 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) } else if (command == "help") { - msg.erase(0, 6); trim(msg); std::size_t space = msg.find(" "); std::string msg1; |