diff options
| author | 2019-04-16 22:58:15 +0100 | |
|---|---|---|
| committer | 2019-04-18 23:38:23 +0100 | |
| commit | 9f3502de449f3bd4a88163ddc39626305071531f (patch) | |
| tree | 3ec2c276a12bd494f109bd49203a86e43b9f23fe /src/modules/m_spanningtree/compat.cpp | |
| parent | Fix some bugs in LIST constraint parsing. (diff) | |
Remove m_silence pending a complete rewrite.
Diffstat (limited to 'src/modules/m_spanningtree/compat.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/compat.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree/compat.cpp b/src/modules/m_spanningtree/compat.cpp index 694b28d87..aacae5dea 100644 --- a/src/modules/m_spanningtree/compat.cpp +++ b/src/modules/m_spanningtree/compat.cpp @@ -519,6 +519,11 @@ bool TreeSocket::PreProcessOldProtocolMessage(User*& who, std::string& cmd, Comm // SVSWATCH was removed because nothing was using it, but better be sure return false; } + else if (cmd == "SVSSILENCE") + { + // SVSSILENCE was removed because nothing was using it, but better be sure + return false; + } else if (cmd == "PUSH") { if ((params.size() != 2) || (!this->MyRoot)) |
