diff options
| author | 2010-01-17 17:10:45 +0000 | |
|---|---|---|
| committer | 2010-01-17 17:10:45 +0000 | |
| commit | 5d474dc9fbd9bd36d0a0a8df93e1ec1e180864d7 (patch) | |
| tree | ca8c0647f00e166256755aeeea2e82ef597998da /src/modules/m_helpop.cpp | |
| parent | Add Module::init() for correct exception handling during hook registration (diff) | |
Move initialization that throws configuration exceptions to init()
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12279 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_helpop.cpp')
| -rw-r--r-- | src/modules/m_helpop.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/modules/m_helpop.cpp b/src/modules/m_helpop.cpp index cbb56c3f9..5cd8d8ea0 100644 --- a/src/modules/m_helpop.cpp +++ b/src/modules/m_helpop.cpp @@ -119,15 +119,18 @@ class ModuleHelpop : public Module ModuleHelpop() : cmd(this), ho(this) { + } + + void init() + { ReadConfig(); - if (!ServerInstance->Modes->AddMode(&ho)) - throw ModuleException("Could not add new modes!"); - ServerInstance->AddCommand(&cmd); + ServerInstance->Modules->AddService(ho); + ServerInstance->Modules->AddService(cmd); Implementation eventlist[] = { I_OnRehash, I_OnWhois }; ServerInstance->Modules->Attach(eventlist, this, 2); } - virtual void ReadConfig() + void ReadConfig() { ConfigReader MyConf; |
