From 67878d628c15f2adec41b6d3b266830a636c2ed0 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 28 Dec 2006 16:55:50 +0000 Subject: Reasonably sized fix - when adding modes in modules, be sure to check the return value so we dont load two modules with conflicting modes git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6137 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_cloaking.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/modules/m_cloaking.cpp') diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp index 850a0e5f9..17e8c3405 100644 --- a/src/modules/m_cloaking.cpp +++ b/src/modules/m_cloaking.cpp @@ -238,7 +238,8 @@ class ModuleCloaking : public Module cu = new CloakUser(ServerInstance, this, HashModule); /* Register it with the core */ - ServerInstance->AddMode(cu, 'x'); + if (!ServerInstance->AddMode(cu, 'x')) + throw ModuleException("Could not add new modes!"); OnRehash(""); } -- cgit v1.3.1-10-gc9f91