From 5896ed79092523badb881b89a134b171b9bda2b6 Mon Sep 17 00:00:00 2001 From: prozacx Date: Wed, 15 Nov 2006 22:24:09 +0000 Subject: [PATCH] Relay messages to other clients of the current user git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@784 726aef4b-f618-498e-8847-2d620e286838 --- modules/crypt.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/crypt.cpp b/modules/crypt.cpp index ab34526e..b02aea08 100644 --- a/modules/crypt.cpp +++ b/modules/crypt.cpp @@ -50,6 +50,7 @@ public: CChan* pChan = m_pUser->FindChan(sTarget); if ((pChan) && (pChan->KeepBuffer())) { pChan->AddBuffer(":\244" + m_pUser->GetIRCNick().GetNickMask() + " PRIVMSG " + sTarget + " :" + sMessage); + m_pUser->PutUser(":\244" + m_pUser->GetIRCNick().GetNickMask() + " PRIVMSG " + sTarget + " :" + sMessage, NULL, m_pClient); } CString sMsg = MakeIvec() + sMessage;