diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-28 14:10:32 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-28 14:10:32 +0000 |
commit | 29e5cbb53350050a70b4b4b130627a56b4d34be6 (patch) | |
tree | be2b25bf9f46e239c43dfcb39d32e863aedf0a48 /src/modules/m_spanningtree.cpp | |
parent | 36b32f6c0547b821565270806a986f7035bffaef (diff) |
Made privmsgs work
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1976 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r-- | src/modules/m_spanningtree.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 7f42456bd..e5494c236 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -654,6 +654,7 @@ class TreeSocket : public InspSocket { strparams[q] = (char*)params[q].c_str(); } + log(DEBUG,"*** CALL COMMAND HANDLER FOR %s, SOURCE: '%s'",command.c_str(),who->nick); Srv->CallCommandHandler(command, strparams, params.size(), who); } else @@ -890,7 +891,7 @@ class ModuleSpanningTree : public Module virtual void OnUserMessage(userrec* user, void* dest, int target_type, std::string text) { - if (target_type = TYPE_USER) + if (target_type == TYPE_USER) { // route private messages which are targetted at clients only to the server // which needs to receive them @@ -900,7 +901,7 @@ class ModuleSpanningTree : public Module std::deque<std::string> params; params.clear(); params.push_back(d->nick); - params.push_back(text); + params.push_back(":"+text); DoOneToOne(user->nick,"PRIVMSG",params,d->server); } } |