aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/privmsg.cpp
diff options
context:
space:
mode:
authorGravatar brain2008-04-04 14:05:07 +0000
committerGravatar brain2008-04-04 14:05:07 +0000
commit463979eb86f2f626a0a6c7b0b9742a86b35c7faa (patch)
tree2fee785574c32238409da2ca721951f2f75cc5e9 /src/modules/m_spanningtree/privmsg.cpp
parentServer origin privmsg, UNTESTED - will test in a min (diff)
Server origin PRIVMSG and NOTICE now supported by protocol. Will add interface after i've shredded a load of paper >:)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9307 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/privmsg.cpp')
-rw-r--r--src/modules/m_spanningtree/privmsg.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/privmsg.cpp b/src/modules/m_spanningtree/privmsg.cpp
index b73ba15fb..6c4c8935e 100644
--- a/src/modules/m_spanningtree/privmsg.cpp
+++ b/src/modules/m_spanningtree/privmsg.cpp
@@ -50,7 +50,8 @@ bool TreeSocket::ServerMessage(const std::string &messagetype, const std::string
{
FOREACH_MOD_I(Instance, I_OnUserNotice, OnUserNotice(NULL, channel, TYPE_SERVER, text, status, except_list));
}
- channel->WriteChannelWithServ(prefix.c_str(), "%s %s :%s", messagetype.c_str(), channel->name, text.c_str());
+ TreeServer* s = Utils->FindServer(prefix);
+ channel->WriteChannelWithServ(s->GetName().c_str(), "%s %s :%s", messagetype.c_str(), channel->name, text.c_str());
}
/* Propogate as channel privmsg */