diff --git a/extensions/Makefile.am b/extensions/Makefile.am index 300c21952..6a4963adb 100644 --- a/extensions/Makefile.am +++ b/extensions/Makefile.am @@ -43,7 +43,6 @@ extension_LTLIBRARIES = \ sno_globalnickchange.la \ sno_globaloper.la \ sno_whois.la \ - m_42.la \ m_adminwall.la \ m_echotags.la \ m_extendchans.la \ diff --git a/extensions/m_42.c b/extensions/m_42.c deleted file mode 100644 index 682acaa0b..000000000 --- a/extensions/m_42.c +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (C) infinity-infinity God - * - * Bob was here - */ - -#include "stdinc.h" -#include "modules.h" -#include "client.h" -#include "ircd.h" -#include "send.h" - -static int mclient_42(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]); - -struct Message hgtg_msgtab = { - "42", 0, 0, 0, 0, - { mg_ignore, {mclient_42, 0}, mg_ignore, mg_ignore, mg_ignore, {mclient_42, 0} - } -}; - -mapi_clist_av1 hgtg_clist[] = { &hgtg_msgtab, NULL }; - - -DECLARE_MODULE_AV2(42, NULL, NULL, hgtg_clist, NULL, NULL, NULL, "42", NULL); - - -static int -mclient_42(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) -{ - sendto_one_notice(source_p, ":The Answer to Life, the Universe, and Everything."); - return 0; -} - -