summaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree.cpp
diff options
context:
space:
mode:
authorGravatar brain2006-06-17 13:50:54 +0000
committerGravatar brain2006-06-17 13:50:54 +0000
commite529eff4ed5062e7976b375888b291dd0a59da74 (patch)
treed5cd8c702af239e316efbfc82df1733698171f01 /src/modules/m_spanningtree.cpp
parentBring forward fix for w00t. (diff)
downloadinspircd++-e529eff4ed5062e7976b375888b291dd0a59da74.tar.gz
inspircd++-e529eff4ed5062e7976b375888b291dd0a59da74.tar.bz2
inspircd++-e529eff4ed5062e7976b375888b291dd0a59da74.zip
On remote kill, send KILL notice. mIRC doesnt seem happy with just the STANDARD message, it wants specially crafted quit notices too, but i say fuck mIRC.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4027 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r--src/modules/m_spanningtree.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index fcc099391..f5f0861ff 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -1648,6 +1648,7 @@ class TreeSocket : public InspSocket
std::string reason = params[1];
params[1] = ":" + params[1];
DoOneToAllButSender(prefix,"KILL",params,sourceserv);
+ ::Write(who->fd, ":%s KILL %s :%s (%s)", sourceserv.c_str(), who->nick, sourceserv.c_str(), reason.c_str());
Srv->QuitUser(who,reason);
}
return true;