]> jfr.im git - solanum.git/blobdiff - extensions/m_adminwall.c
msg: remove last vestiges of the fakelag system. charybdis has never supported fakelag.
[solanum.git] / extensions / m_adminwall.c
index 429206342d07c9a76c5863689429fe236a2f4bee..53cf0f29c9c8177a752e5a172ec33b153bd324f9 100644 (file)
 #include "s_serv.h"
 #include "messages.h"
 
-static int mo_adminwall(struct Client *, struct Client *, int, const char **);
-static int me_adminwall(struct Client *, struct Client *, int, const char **);
+static int mo_adminwall(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+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}}
 };
 
@@ -58,7 +58,7 @@ DECLARE_MODULE_AV1(adminwall, NULL, NULL, adminwall_clist, NULL, NULL, "$Revisio
  */
 
 static int
-mo_adminwall(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+mo_adminwall(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
         if(!IsAdmin(source_p))
         {
@@ -72,7 +72,7 @@ mo_adminwall(struct Client *client_p, struct Client *source_p, int parc, const c
 }
 
 static int
-me_adminwall(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+me_adminwall(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
         sendto_wallops_flags(UMODE_ADMIN, source_p, "ADMINWALL - %s", parv[1]);
         return 0;