summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-25 09:22:04 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-25 09:22:04 +0000
commitebf3d2f5ce5654d7cb5eae006184d2740a1dc43a (patch)
tree390e4d8dc6da72dfcb7621c3020e5156de78b2fc /src/modules
parent9c865ef0c27f03448644aa8dfc2b7596e780bdb0 (diff)
Fix NOTICE $* to go between servers
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4536 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_spanningtree.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index 22c9e9246..14680efd6 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -2697,14 +2697,14 @@ bool DoOneToAllButSenderRaw(std::string data, std::string omit, std::string pref
TreeServer* omitroute = BestRouteTo(omit);
if ((command == "NOTICE") || (command == "PRIVMSG"))
{
- if ((params.size() >= 2) && (*(params[0].c_str()) != '$'))
+ if (params.size() >= 2)
{
/* Prefixes */
if ((*(params[0].c_str()) == '@') || (*(params[0].c_str()) == '%') || (*(params[0].c_str()) == '+'))
{
params[0] = params[0].substr(1, params[0].length()-1);
}
- if (*(params[0].c_str()) != '#')
+ if ((*(params[0].c_str()) != '#') && (*(params[0].c_str()) != '$'))
{
// special routing for private messages/notices
userrec* d = Srv->FindNick(params[0]);
@@ -2717,6 +2717,14 @@ bool DoOneToAllButSenderRaw(std::string data, std::string omit, std::string pref
return true;
}
}
+ else if (*(params[0].c_str()) == '$')
+ {
+ std::deque<std::string> par;
+ par.push_back(params[0]);
+ par.push_back(":"+params[1]);
+ DoOneToAllButSender(prefix,command.c_str(),par,omitroute->GetName());
+ return true;
+ }
else
{
log(DEBUG,"Channel privmsg going to chan %s",params[0].c_str());