]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_hidechans.cpp
Test stuff to fix remote stats brokage
[user/henk/code/inspircd.git] / src / modules / m_hidechans.cpp
index 68ce664be848fbc0e071580a209ece5cc5547565..3b9a37209b8c35ed4a21f1dc37903564d0eef779 100644 (file)
@@ -2,12 +2,9 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
@@ -19,7 +16,7 @@
 #include "modules.h"
 #include "inspircd.h"
 
-/* $ModDesc: Provides support for hiding oper status with user mode +I */
+/* $ModDesc: Provides support for hiding channels with user mode +I */
 
 /** Handles user mode +I
  */
@@ -65,7 +62,8 @@ class ModuleHideChans : public Module
        {
                
                hm = new HideChans(ServerInstance);
-               ServerInstance->AddMode(hm, 'I');
+               if (!ServerInstance->AddMode(hm, 'I'))
+                       throw ModuleException("Could not add new modes!");
        }
 
        void Implements(char* List)