diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-05 16:27:26 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-05 16:27:26 +0000 |
commit | cb7982a32ed1d8c8fa42beb3056c35f44ad6eb21 (patch) | |
tree | 5cfa44eba7eeab781750c6fa60e8f0759a47bfb5 | |
parent | d1efba87419d5ca0b88415c2050e30a1df3993f3 (diff) |
Fix to allow empty but defined away message (yes, really)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3099 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_spanningtree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 95083217e..9e9efddc4 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -3342,7 +3342,7 @@ class ModuleSpanningTree : public Module if (IS_LOCAL(user)) { std::deque<std::string> params; - params.push_back(":"); + params.clear(); DoOneToMany(user->nick,"AWAY",params); } } |