diff options
| author | 2013-04-11 23:47:45 +0200 | |
|---|---|---|
| committer | 2013-07-01 19:21:08 +0200 | |
| commit | f2cdf27dd9c45f91f4184b81ea3b9be7c5d88173 (patch) | |
| tree | 2af494a7cf74fc8731e6cae695ae37a2267b6d5e /src/modules/m_noctcp.cpp | |
| parent | Fix a few oversights (diff) | |
Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() with ModeHandlers, part 1
Diffstat (limited to 'src/modules/m_noctcp.cpp')
| -rw-r--r-- | src/modules/m_noctcp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_noctcp.cpp b/src/modules/m_noctcp.cpp index 29b548e1c..e769ba420 100644 --- a/src/modules/m_noctcp.cpp +++ b/src/modules/m_noctcp.cpp @@ -63,7 +63,7 @@ class ModuleNoCTCP : public Module if (res == MOD_RES_ALLOW) return MOD_RES_PASSTHRU; - if (!c->GetExtBanStatus(user, 'C').check(!c->IsModeSet('C'))) + if (!c->GetExtBanStatus(user, 'C').check(!c->IsModeSet(nc))) { user->WriteNumeric(ERR_NOCTCPALLOWED, "%s %s :Can't send CTCP to channel (+C set)",user->nick.c_str(), c->name.c_str()); return MOD_RES_DENY; |
