summaryrefslogtreecommitdiff
path: root/src/modules/m_redirect.cpp
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2012-12-02 19:40:17 +0100
committerattilamolnar <attilamolnar@hush.com>2012-12-02 19:40:17 +0100
commit349106f3f9f75d7f957fc5d1e71ca650f4807bb9 (patch)
treed15455cf27e1c8c4e95d04372ebb8c986452c101 /src/modules/m_redirect.cpp
parent84a1569cd60daa64b1ae52a1fff62c0dc4d78850 (diff)
Register all commands, modes and extensions using AddService()
AddService() throws an exception if an item cannot be registered, modules no longer need to worry about AddMode() etc. failing
Diffstat (limited to 'src/modules/m_redirect.cpp')
-rw-r--r--src/modules/m_redirect.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/modules/m_redirect.cpp b/src/modules/m_redirect.cpp
index 4c44e630c..26d6b162b 100644
--- a/src/modules/m_redirect.cpp
+++ b/src/modules/m_redirect.cpp
@@ -115,8 +115,7 @@ class ModuleRedirect : public Module
UseUsermode = ServerInstance->Config->ConfValue("redirect")->getBool("antiredirect");
/* Channel mode */
- if (!ServerInstance->Modes->AddMode(&re))
- throw ModuleException("Could not add new modes!");
+ ServerInstance->Modules->AddService(re);
/* Check to see if the usermode is enabled in the config */
if (UseUsermode)
@@ -125,8 +124,7 @@ class ModuleRedirect : public Module
ServerInstance->Logs->Log("m_redirect", DEFAULT, "REDIRECT: Enabled usermode +L. This breaks linking with servers that do not have this enabled. This is disabled by default in the 2.0 branch but will be enabled in the next version.");
/* Try to add the usermode */
- if (!ServerInstance->Modes->AddMode(&re_u))
- throw ModuleException("Could not add new modes!");
+ ServerInstance->Modules->AddService(re_u);
}
Implementation eventlist[] = { I_OnUserPreJoin };