diff --git a/modules/nickserv.cpp b/modules/nickserv.cpp index 1f011028..eb8134d6 100644 --- a/modules/nickserv.cpp +++ b/modules/nickserv.cpp @@ -35,17 +35,10 @@ public: if (sCmdName == "set") { CString sPass = sCommand.Token(1, true); m_sPass = sPass; - PutModule("Password set"); - } else if (sCmdName == "show") { - if (m_sPass.empty()) - PutModule("No password set"); - else - PutModule("Current password: " + m_sPass); - } else if (sCmdName == "save") { SetNV("Password", m_sPass); - PutModule("Saved!"); + PutModule("Password set"); } else { - PutModule("Commands: set , show, save"); + PutModule("Commands: set "); } }