diff options
-rw-r--r-- | include/extern.h | 1 | ||||
-rw-r--r-- | src/botserv.c | 2 | ||||
-rw-r--r-- | src/ircd.c | 5 |
3 files changed, 1 insertions, 7 deletions
diff --git a/include/extern.h b/include/extern.h index 796dc011c..2179bd414 100644 --- a/include/extern.h +++ b/include/extern.h @@ -1123,7 +1123,6 @@ E void anope_SendInvite(const char *source, const char *chan, const char *nick); E void anope_SendJoin(const char *user, const char *channel, time_t chantime); /* JOIN */ E void anope_cmd_tmode(const char *source, const char *dest, const char *fmt, ...); /* TMODE */ E void anope_SendBanDel(const char *name, const char *nick); /* MODE -b */ -E void anope_SendBotOp(const char *nick, const char *chan); /* MODE BotServ */ E void anope_cmd_netinfo(int ac, const char **av); /* NETINFO */ E void anope_SendChangeBotNick(const char *oldnick, const char *newnick); /* NICK */ E void anope_SendPart(const char *nick, const char *chan, const char *fmt, ...); /* PART */ diff --git a/src/botserv.c b/src/botserv.c index 9a476fd72..7cb1b535c 100644 --- a/src/botserv.c +++ b/src/botserv.c @@ -751,7 +751,7 @@ void bot_join(ChannelInfo * ci) ci->bi->nick, ci->bi->nick); } anope_SendJoin(ci->bi->nick, ci->c->name, ci->c->creation_time); - anope_SendBotOp(ci->bi->nick, ci->c->name); + ircdproto->SendBotOp(ci->bi->nick, ci->c->name); send_event(EVENT_BOT_JOIN, 2, ci->name, ci->bi->nick); } diff --git a/src/ircd.c b/src/ircd.c index ff6fc51ea..961c2aee1 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -43,11 +43,6 @@ void anope_ProcessUsermodes(User *user, int ac, const char **av) ircdproto->ProcessUsermodes(user, ac, av); } -void anope_SendBotOp(const char *nick, const char *chan) -{ - ircdproto->SendBotOp(nick, chan); -} - void anope_SendQuit(const char *source, const char *fmt, ...) { va_list args; |