diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 19:11:32 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 19:11:32 +0000 |
commit | d3f58dcd4f97589ddeddd665eedede29ad6baa28 (patch) | |
tree | bb53cade468e006cb5f6dd263d124f6b66b345d4 /src/modules/cs_tban.c | |
parent | 552c4a47b18a3373b46512a00bfce360f30a5cea (diff) |
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
Diffstat (limited to 'src/modules/cs_tban.c')
-rw-r--r-- | src/modules/cs_tban.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/cs_tban.c b/src/modules/cs_tban.c index 2b225207e..9c743664a 100644 --- a/src/modules/cs_tban.c +++ b/src/modules/cs_tban.c @@ -79,7 +79,7 @@ void myFullHelpSyntax(User * u) int myFullHelp(User * u) { myFullHelpSyntax(u); - notice(s_ChanServ, u->nick, ""); + ircdproto->SendMessage(s_ChanServ, u->nick, " "); moduleNoticeLang(s_ChanServ, u, TBAN_HELP_DETAIL); return MOD_CONT; } |