mirror of
https://github.com/anope/anope.git
synced 2026-07-10 03:03:13 +02:00
Replaced anope_SendBotOp() with direct call to SendBotOp() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1340 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
+1
-1
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user