diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:36:00 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:36:00 +0000 |
commit | dae48c47929a9a6341b90412cc551d01d89613e6 (patch) | |
tree | fd4b91566c308644c4322564d7518642dc14f35a /src/ircd.c | |
parent | 4e395e19629abe6b93c4b14a0608d071dbf4b5b4 (diff) |
cmd_bot_send_chan_mode -> SendBotOp
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1304 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ircd.c b/src/ircd.c index 1d8e32bed..ba84da7c9 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -185,9 +185,9 @@ void anope_cmd_serv_privmsg(const char *source, const char *dest, const char *ms ircdproto->cmd_serv_privmsg(source, dest, msg); } -void anope_cmd_bot_chan_mode(const char *nick, const char *chan) +void anope_SendBotOp(const char *nick, const char *chan) { - ircdproto->cmd_bot_chan_mode(nick, chan); + ircdproto->SendBotOp(nick, chan); } void anope_cmd_quit(const char *source, const char *fmt, ...) |