1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 10:06:38 +02:00

Replaced notice() with direct call to SendMessage() in IRCDProto class.

Added SendNoticeInternal() function to IRCDProto class, now SendNotice() is a stub to handle varargs.


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1336 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Naram Qashat cyberbotx@cyberbotx.com
2008-10-02 19:11:32 +00:00
parent 552c4a47b1
commit d3f58dcd4f
10 changed files with 34 additions and 53 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ void my_cs_help(User * u)
int my_cs_help_appendtopic(User * u)
{
moduleNoticeLang(s_ChanServ, u, LNG_APPENDTOPIC_SYNTAX);
notice(s_ChanServ, u->nick, " ");
ircdproto->SendMessage(s_ChanServ, u->nick, " ");
moduleNoticeLang(s_ChanServ, u, LNG_CHAN_HELP_APPENDTOPIC);
return MOD_STOP;
}