aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_nonotice.cpp
diff options
context:
space:
mode:
authorGravatar danieldg2009-03-14 20:48:43 +0000
committerGravatar danieldg2009-03-14 20:48:43 +0000
commitbd12e3a4e6501496f6eeb7aeb5245162020d6e6c (patch)
tree348c5285d0706285038e92bfc46a6351a42ebbd5 /src/modules/m_nonotice.cpp
parentShow the IP address only in zline added messages if *@ip was supplied. (diff)
downloadinspircd++-bd12e3a4e6501496f6eeb7aeb5245162020d6e6c.tar.gz
inspircd++-bd12e3a4e6501496f6eeb7aeb5245162020d6e6c.tar.bz2
inspircd++-bd12e3a4e6501496f6eeb7aeb5245162020d6e6c.zip
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
Diffstat (limited to 'src/modules/m_nonotice.cpp')
-rw-r--r--src/modules/m_nonotice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_nonotice.cpp b/src/modules/m_nonotice.cpp
index 9c02408cf..79a1ea796 100644
--- a/src/modules/m_nonotice.cpp
+++ b/src/modules/m_nonotice.cpp
@@ -48,7 +48,7 @@ class ModuleNoNotice : public Module
if ((target_type == TYPE_CHANNEL) && (IS_LOCAL(user)))
{
Channel* c = (Channel*)dest;
- if (c->IsModeSet('T') || c->IsExtBanned(user, 'T'))
+ if (c->IsModeSet('T') || c->GetExtBanStatus(user, 'T') < 0)
{
if (ServerInstance->ULine(user->server))
{