From f027be9576ed9b557a1df04d7f5703642a4b19b9 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sun, 15 Apr 2012 00:05:07 +0700 Subject: [PATCH] Remove = from output of nickserv ViewCommands It was very confusing. People tried to use SetCommand with = too... --- modules/nickserv.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/nickserv.cpp b/modules/nickserv.cpp index d1b058c1..90dcac0d 100644 --- a/modules/nickserv.cpp +++ b/modules/nickserv.cpp @@ -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) {