diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:37:14 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:37:14 +0000 |
commit | bd56c0fb93b06c1d5f58f83089f12eda5c9e82d9 (patch) | |
tree | a99c35c6cc7cafcad8f85a96927c80b40ebb3fb2 /src/send.c | |
parent | dae48c47929a9a6341b90412cc551d01d89613e6 (diff) |
Global NOTICE/PRIVMSG, QUIT.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1305 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/send.c')
-rw-r--r-- | src/send.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/send.c b/src/send.c index 4f4a9aeb1..79e8f5e68 100644 --- a/src/send.c +++ b/src/send.c @@ -72,9 +72,9 @@ void notice_server(char *source, Server * s, char *fmt, ...) vsnprintf(buf, BUFSIZE - 1, fmt, args); if (NSDefFlags & NI_MSG) { - anope_cmd_serv_privmsg(source, s->name, buf); + anope_SendGlobalPrivmsg(source, s->name, buf); } else { - anope_cmd_serv_notice(source, s->name, buf); + anope_SendGlobalNotice(source, s->name, buf); } va_end(args); } |