]> jfr.im git - solanum.git/blobdiff - extensions/m_adminwall.c
Give all extensions/m_* modules AV2 descriptions
[solanum.git] / extensions / m_adminwall.c
index dd423b16bed240030c46a477c27d403bd3939a7b..1c7f20a1975d3a5ffb90bc644504fcc4f61450d4 100644 (file)
@@ -20,8 +20,6 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
  *  USA
- *
- *  $Id: m_wallops.c 20702 2005-08-31 20:59:02Z leeh $
  */
 
 #include "stdinc.h"
@@ -43,13 +41,17 @@ static int mo_adminwall(struct MsgBuf *, struct Client *, struct Client *, int,
 static int me_adminwall(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 
 struct Message adminwall_msgtab = {
-       "ADMINWALL", 0, 0, 0, MFLG_SLOW,
+       "ADMINWALL", 0, 0, 0, 0,
        {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_adminwall, 2}, {mo_adminwall, 2}}
 };
 
 
 mapi_clist_av1 adminwall_clist[] = { &adminwall_msgtab, NULL };
-DECLARE_MODULE_AV1(adminwall, NULL, NULL, adminwall_clist, NULL, NULL, "$Revision: 20702 $");
+
+static const char adminwall_desc[] =
+        "Provides the ADMINWALL command to send a message to all administrators";
+
+DECLARE_MODULE_AV2(adminwall, NULL, NULL, adminwall_clist, NULL, NULL, NULL, NULL, adminwall_desc);
 
 
 /*