From 0c64f53bc9c3c29a47dae0b9d206089e2d5d23d6 Mon Sep 17 00:00:00 2001 From: psychon Date: Wed, 7 Apr 2010 16:04:52 +0000 Subject: [PATCH] Make query to *raw send the command to IRC instead of to the client IMHO this makes way more sense. Really, a lot more sense. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1892 726aef4b-f618-498e-8847-2d620e286838 --- modules/raw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/raw.cpp b/modules/raw.cpp index ef7e7c17..17d86941 100644 --- a/modules/raw.cpp +++ b/modules/raw.cpp @@ -19,7 +19,7 @@ public: } virtual void OnModCommand(const CString& sCommand) { - m_pUser->PutUser(sCommand); + PutIRC(sCommand); } virtual EModRet OnUserRaw(CString& sLine) {