diff options
| author | 2009-04-19 15:26:21 +0000 | |
|---|---|---|
| committer | 2009-04-19 15:26:21 +0000 | |
| commit | 520401ed4a472f062f3e4bcef038905169f53c17 (patch) | |
| tree | ceb9d7291e2ac8af36969c44d17286bd85805608 /src/modules/m_spanningtree/main.cpp | |
| parent | Send snotices when m_dnsbl adds an xline; fixes bug #837 (diff) | |
Add loopCall to prevent double-broadcasting new X:lines
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11319 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index 0a6ed9390..aabdba2bb 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -769,7 +769,7 @@ void ModuleSpanningTree::OnOper(User* user, const std::string &opertype) void ModuleSpanningTree::OnAddLine(User* user, XLine *x) { - if (!x->IsBurstable()) + if (!x->IsBurstable() || loopCall) return; char data[MAXBUF]; |
