aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_nopartmsg.cpp
diff options
context:
space:
mode:
authorGravatar danieldg2009-09-02 00:49:36 +0000
committerGravatar danieldg2009-09-02 00:49:36 +0000
commit86775e2e98f55b3b88befe2daff0ca23f02f3155 (patch)
treecbc3abf3f55ae6fd1112bcf6bf44e02b502ac2d6 /src/modules/m_nopartmsg.cpp
parentRemove "servermode" parameter, replace with IS_FAKE() which is more reliable (diff)
downloadinspircd++-86775e2e98f55b3b88befe2daff0ca23f02f3155.tar.gz
inspircd++-86775e2e98f55b3b88befe2daff0ca23f02f3155.tar.bz2
inspircd++-86775e2e98f55b3b88befe2daff0ca23f02f3155.zip
ModResult conversion: Change return type of all module functions
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11634 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_nopartmsg.cpp')
-rw-r--r--src/modules/m_nopartmsg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_nopartmsg.cpp b/src/modules/m_nopartmsg.cpp
index 50a6e14b9..931603907 100644
--- a/src/modules/m_nopartmsg.cpp
+++ b/src/modules/m_nopartmsg.cpp
@@ -40,7 +40,7 @@ class ModulePartMsgBan : public Module
if (!IS_LOCAL(user))
return;
- if (channel->GetExtBanStatus(user, 'p') < 0)
+ if (channel->GetExtBanStatus(user, 'p') == MOD_RES_DENY)
partmessage = "";
return;