diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:11 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:11 +0000 |
commit | 6fa5553b4ba46641b94025cfee7de07550823fdf (patch) | |
tree | 2ef8e76a7f2125819bc4055c7117bd12899d7292 /src/protocol/bahamut.c | |
parent | efb458a927ce9b0d3542c0fe6093c898f171f036 (diff) |
Added cmd_notice() function to IRCDProtoNew class. (Replaces cmd_notice2)
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1229 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r-- | src/protocol/bahamut.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c index 421f8828b..383ceda06 100644 --- a/src/protocol/bahamut.c +++ b/src/protocol/bahamut.c @@ -1027,11 +1027,6 @@ void BahamutIRCdProto::cmd_notice_ops(const char *source, const char *dest, cons send_cmd(NULL, "NOTICE @%s :%s", dest, buf); } -void bahamut_cmd_notice2(const char *source, const char *dest, const char *msg) -{ - send_cmd(source, "NOTICE %s :%s", dest, msg); -} - void bahamut_cmd_serv_notice(const char *source, const char *dest, const char *msg) { send_cmd(source, "NOTICE $%s :%s", dest, msg); @@ -1502,7 +1497,6 @@ void moduleAddAnopeCmds() pmodule_cmd_372_error(bahamut_cmd_372_error); pmodule_cmd_375(bahamut_cmd_375); pmodule_cmd_376(bahamut_cmd_376); - pmodule_cmd_notice2(bahamut_cmd_notice2); pmodule_cmd_serv_notice(bahamut_cmd_serv_notice); pmodule_cmd_serv_privmsg(bahamut_cmd_serv_privmsg); pmodule_cmd_bot_chan_mode(bahamut_cmd_bot_chan_mode); |