diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_spanningtree/privmsg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/privmsg.cpp b/src/modules/m_spanningtree/privmsg.cpp index 3e2725815..4a266a465 100644 --- a/src/modules/m_spanningtree/privmsg.cpp +++ b/src/modules/m_spanningtree/privmsg.cpp @@ -40,7 +40,7 @@ bool TreeSocket::ServerMessage(const std::string &messagetype, const std::string Channel* channel = Instance->FindChan(target); - if (target) + if (channel) { if (messagetype == "PRIVMSG") { |