From bd12e3a4e6501496f6eeb7aeb5245162020d6e6c Mon Sep 17 00:00:00 2001 From: danieldg Date: Sat, 14 Mar 2009 20:48:43 +0000 Subject: Extban rework: allow exceptions to override bans on join Move all bans that prevent a user from joining the channel to OnCheckBan, then stack their return results to allow an exception to override a ban. This does not make join exceptions override any other exception like mute. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11222 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_nopartmsg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/m_nopartmsg.cpp') diff --git a/src/modules/m_nopartmsg.cpp b/src/modules/m_nopartmsg.cpp index afa44900d..1b1316ae5 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->IsExtBanned(user, 'p')) + if (channel->GetExtBanStatus(user, 'p') < 0) partmessage = ""; return; -- cgit v1.2.3