diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-04-09 18:57:05 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-04-09 18:57:05 +0200 |
commit | ac705cd20e12f46bd638093f000dfd541ffc5d22 (patch) | |
tree | c500e7510a6290a8b81b8315da3810b39bb91343 /src/modules/m_nonotice.cpp | |
parent | 0fa365373eb9110a05ee4be5c36c9757c30f1a25 (diff) |
Remove some uline checks that ran after an IS_LOCAL() check
Diffstat (limited to 'src/modules/m_nonotice.cpp')
-rw-r--r-- | src/modules/m_nonotice.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/modules/m_nonotice.cpp b/src/modules/m_nonotice.cpp index d95ea8b8a..c5b9f3a1c 100644 --- a/src/modules/m_nonotice.cpp +++ b/src/modules/m_nonotice.cpp @@ -59,11 +59,6 @@ class ModuleNoNotice : public Module Channel* c = (Channel*)dest; if (!c->GetExtBanStatus(user, 'T').check(!c->IsModeSet('T'))) { - if (ServerInstance->ULine(user->server)) - { - // ulines are exempt. - return MOD_RES_PASSTHRU; - } res = ServerInstance->OnCheckExemption(user,c,"nonotice"); if (res == MOD_RES_ALLOW) return MOD_RES_PASSTHRU; |