diff options
author | attilamolnar <am63770@gmail.com> | 2012-04-18 16:40:59 +0200 |
---|---|---|
committer | Robin Burchell <robin+git@viroteck.net> | 2012-04-18 16:42:25 +0200 |
commit | b32df2db7d60e180e3ac9b219165723c59ce1fca (patch) | |
tree | caeb188d1f9788f9a53e73dbac170773764ec169 | |
parent | 559156bfc5f9e0667fb9c83a8240ef244c643f2f (diff) |
Forward port 1d703dcf7858a322c823bbd80f9507b627c5738c.
-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 68367cee0..c38d54d4d 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -830,7 +830,7 @@ void ModuleSpanningTree::OnAddLine(User* user, XLine *x) void ModuleSpanningTree::OnDelLine(User* user, XLine *x) { - if (x->type == "K") + if (!x->IsBurstable() || loopCall) return; char data[MAXBUF]; |