diff options
| author | 2006-06-05 20:16:11 +0000 | |
|---|---|---|
| committer | 2006-06-05 20:16:11 +0000 | |
| commit | ca0b64db5036b8956ec9619ce786c991ec839759 (patch) | |
| tree | 68955142478007e686709704fdd81a14e986b46d /src/modules/m_spanningtree.cpp | |
| parent | Fix for an/a and vowel detection in "is an ircop" numeric, noticed by Smartys (diff) | |
| download | inspircd++-ca0b64db5036b8956ec9619ce786c991ec839759.tar.gz inspircd++-ca0b64db5036b8956ec9619ce786c991ec839759.tar.bz2 inspircd++-ca0b64db5036b8956ec9619ce786c991ec839759.zip | |
Fix for collisions when clock is out
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3991 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
| -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 a99d40607..146842df2 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -2605,7 +2605,7 @@ class TreeSocket : public InspSocket * and our copy. */ userrec* x = Srv->FindNick(params[0]); - if (x) + if ((x) && (x != who)) { std::deque<std::string> p; p.push_back(params[0]); |
