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 | bc9e96d6eb004eb86ff1b0709fe2050bd8df3b69 (patch) | |
tree | 582ebd30946ad66eff857da27ad01a2011d101bc /src/protocol/ratbox.c | |
parent | ac05ac3857b8c3ccd8a6ea2444c738c954668ee2 (diff) |
Added cmd_notice_ops() function to IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1221 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/ratbox.c')
-rw-r--r-- | src/protocol/ratbox.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c index 25f55072a..d38ef0eea 100644 --- a/src/protocol/ratbox.c +++ b/src/protocol/ratbox.c @@ -1295,13 +1295,10 @@ void RatboxProto::cmd_kick(const char *source, const char *chan, const char *use else send_cmd(UseTS6 ? (ud ? ud->uid : source) : source, "KICK %s %s", chan, UseTS6 ? (u ? u->uid : user) : user); } -void ratbox_cmd_notice_ops(const char *source, const char *dest, const char *buf) +void RatboxProto::cmd_notice_ops(const char *source, const char *dest, const char *buf) { - if (!buf) { - return; - } - - send_cmd(NULL, "NOTICE @%s :%s", dest, buf); + if (!buf) return; + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); } void ratbox_cmd_bot_chan_mode(const char *nick, const char *chan) @@ -1672,7 +1669,6 @@ void moduleAddAnopeCmds() pmodule_cmd_372_error(ratbox_cmd_372_error); pmodule_cmd_375(ratbox_cmd_375); pmodule_cmd_376(ratbox_cmd_376); - pmodule_cmd_notice_ops(ratbox_cmd_notice_ops); pmodule_cmd_notice(ratbox_cmd_notice); pmodule_cmd_notice2(ratbox_cmd_notice2); pmodule_cmd_privmsg(ratbox_cmd_privmsg); |