]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_halfop.cpp
m_dccallow Validate tokens before use
[user/henk/code/inspircd.git] / src / modules / m_halfop.cpp
index ef8cf8bf9887ad8454846308b77d24d288abb754..3194fcde8ea29308798cd0e45af3fbcbbb54232c 100644 (file)
@@ -1,16 +1,24 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+
+/* $ModDesc: Channel half-operator mode provider */
+
 #include "inspircd.h"
 
 class ModeChannelHalfOp : public ModeHandler
@@ -80,13 +88,11 @@ class ModuleHalfop : public Module
  public:
        ModuleHalfop() : mh(this)
        {
-               if (!ServerInstance->Modes->AddMode(&mh))
-                       throw ModuleException("Could not add new modes!");
        }
 
-       ~ModuleHalfop()
+       void init()
        {
-               ServerInstance->Modes->DelMode(&mh);
+               ServerInstance->Modules->AddService(mh);
        }
 
        Version GetVersion()