diff options
| author | 2008-01-17 23:40:18 +0000 | |
|---|---|---|
| committer | 2008-01-17 23:40:18 +0000 | |
| commit | ece985ccb3210a132d67381511642edfb359f5c4 (patch) | |
| tree | ae9e6955ecd039231eaa8d19634bb58732f81c41 /src/modules/m_noctcp.cpp | |
| parent | Aquanight's configure strict/fatal warnings patch (diff) | |
| download | inspircd++-ece985ccb3210a132d67381511642edfb359f5c4.tar.gz inspircd++-ece985ccb3210a132d67381511642edfb359f5c4.tar.bz2 inspircd++-ece985ccb3210a132d67381511642edfb359f5c4.zip | |
Remove a redundant method here, call the mode manager directly
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8732 e03df62e-2008-0410-955e-edbf42e46eb7
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 9124ffa63..2ae9505e1 100644 --- a/src/modules/m_noctcp.cpp +++ b/src/modules/m_noctcp.cpp @@ -55,7 +55,7 @@ class ModuleNoCTCP : public Module { nc = new NoCTCP(ServerInstance); - if (!ServerInstance->AddMode(nc)) + if (!ServerInstance->Modes->AddMode(nc)) throw ModuleException("Could not add new modes!"); Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice }; ServerInstance->Modules->Attach(eventlist, this, 2); |
