diff options
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/ircd.c b/src/ircd.c index 80c72cf65..12330437a 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -64,7 +64,6 @@ void initIrcdProto() ircdproto.ircd_cmd_notice = NULL; ircdproto.ircd_cmd_notice2 = NULL; ircdproto.ircd_cmd_privmsg = NULL; - ircdproto.ircd_cmd_privmsg2 = NULL; ircdproto.ircd_cmd_serv_notice = NULL; ircdproto.ircd_cmd_serv_privmsg = NULL; ircdproto.ircd_cmd_bot_chan_mode = NULL; @@ -327,11 +326,6 @@ void anope_cmd_privmsg(const char *source, const char *dest, const char *fmt, .. ircdproto.ircd_cmd_privmsg(source, dest, buf); } -void anope_cmd_privmsg2(const char *source, const char *dest, const char *msg) -{ - ircdproto.ircd_cmd_privmsg2(source, dest, msg); -} - void anope_cmd_serv_notice(const char *source, const char *dest, const char *msg) { ircdproto.ircd_cmd_serv_notice(source, dest, msg); @@ -806,12 +800,6 @@ pmodule_cmd_privmsg(void (*func) (const char *source, const char *dest, const ch } void -pmodule_cmd_privmsg2(void (*func) (const char *source, const char *dest, const char *msg)) -{ - ircdproto.ircd_cmd_privmsg2 = func; -} - -void pmodule_cmd_serv_notice(void (*func) (const char *source, const char *dest, const char *msg)) { ircdproto.ircd_cmd_serv_notice = func; |