Remove = from output of nickserv ViewCommands

It was very confusing. People tried to use SetCommand with = too...
This commit is contained in:
Alexey Sokolov
2012-04-15 00:05:07 +07:00
parent dc8cdd40de
commit f027be9576
+5 -5
View File
@@ -59,11 +59,11 @@ public:
}
void ViewCommandsCommand(const CString& sLine) {
PutModule("IDENTIFY=" + GetNV("IdentifyCmd"));
PutModule("GHOST=" + GetNV("GhostCmd"));
PutModule("RECOVER=" + GetNV("RecoverCmd"));
PutModule("RELEASE=" + GetNV("ReleaseCmd"));
PutModule("GROUP=" + GetNV("GroupCmd"));
PutModule("IDENTIFY " + GetNV("IdentifyCmd"));
PutModule("GHOST " + GetNV("GhostCmd"));
PutModule("RECOVER " + GetNV("RecoverCmd"));
PutModule("RELEASE " + GetNV("ReleaseCmd"));
PutModule("GROUP " + GetNV("GroupCmd"));
}
void SetCommandCommand(const CString& sLine) {