mirror of
https://github.com/anope/anope.git
synced 2026-07-07 03:23:13 +02:00
Replaced anope_SendSVSMode() with direct call to SendSVSMode() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1327 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -1155,7 +1155,6 @@ E void anope_SendSVSHOLD(const char *nick); /* SVSHOLD */
|
||||
E void anope_SendSVSHOLDDel(const char *nick); /* SVSHOLD */
|
||||
E void anope_cmd_svsinfo(); /* SVSINFO */
|
||||
E void anope_SendSVSJoin(const char *source, const char *nick,const char *chan, const char *param); /* SVSJOIN */
|
||||
E void anope_SendSVSMode(User * u, int ac, const char **av); /* SVSMODE */
|
||||
E void anope_SendSVSMode_chan(const char *name, const char *mode, const char *nick); /* SVSMODE */
|
||||
E void anope_SendForceNickChange(const char *nick,const char *newnick, time_t when); /* SVSNICK */
|
||||
E void anope_SendSVSO(const char *source,const char *nick, const char *flag); /* SVSO */
|
||||
|
||||
+1
-1
@@ -218,7 +218,7 @@ void common_svsmode(User * u, const char *modes, const char *arg)
|
||||
ac++;
|
||||
}
|
||||
|
||||
anope_SendSVSMode(u, ac, av);
|
||||
ircdproto->SendSVSMode(u, ac, av);
|
||||
anope_ProcessUsermodes(u, ac, av);
|
||||
}
|
||||
|
||||
|
||||
@@ -43,11 +43,6 @@ void anope_ProcessUsermodes(User *user, int ac, const char **av)
|
||||
ircdproto->ProcessUsermodes(user, ac, av);
|
||||
}
|
||||
|
||||
void anope_SendSVSMode(User *u, int ac, const char **av)
|
||||
{
|
||||
ircdproto->SendSVSMode(u, ac, av);
|
||||
}
|
||||
|
||||
void anope_SendGuestNick(const char *nick, const char *user, const char *host, const char *real, const char *modes)
|
||||
{
|
||||
ircdproto->SendGuestNick(nick, user, host, real, modes);
|
||||
|
||||
Reference in New Issue
Block a user