diff options
| author | 2009-10-14 18:39:38 +0000 | |
|---|---|---|
| committer | 2009-10-14 18:39:38 +0000 | |
| commit | e80a1296a096ff2c495b3cd2a3913d5e5f6ec450 (patch) | |
| tree | b8e37d6b9eeb0d0bed0ae4d4cbaa249631405c8d /src/modules/m_messageflood.cpp | |
| parent | Remove Command and ModeHandler objects in their destructors; fixes possible p... (diff) | |
Move static map of extensions into ServerInstance, add const-correctness
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11873 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_messageflood.cpp')
| -rw-r--r-- | src/modules/m_messageflood.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_messageflood.cpp b/src/modules/m_messageflood.cpp index bf79babb2..96f504492 100644 --- a/src/modules/m_messageflood.cpp +++ b/src/modules/m_messageflood.cpp @@ -200,7 +200,7 @@ class ModuleMsgFlood : public Module { if (!ServerInstance->Modes->AddMode(&mf)) throw ModuleException("Could not add new modes!"); - Extensible::Register(&mf.ext); + ServerInstance->Extensions.Register(&mf.ext); Implementation eventlist[] = { I_OnUserPreNotice, I_OnUserPreMessage }; ServerInstance->Modules->Attach(eventlist, this, 2); } |
