diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 18:58:23 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 18:58:23 +0000 |
commit | 8001cc147dded5bb8acefe6cb93d6defb3f92562 (patch) | |
tree | 992174ee5e58a4b57b0d745020849fa8902b3d8b /src/ircd.c | |
parent | a22c4bf1daa18e11141a94ecd20dfd8af4944adb (diff) |
Replaced anope_cmd_notice() with direct call to SendNotice() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1334 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/ircd.c b/src/ircd.c index 999bbf515..5a75668ee 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -56,12 +56,6 @@ void anope_cmd_message(const char *source, const char *dest, const char *fmt, .. ircdproto->SendMessage(bi, dest, buf); } -void anope_cmd_notice(const char *source, const char *dest, const char *msg) -{ - BotInfo *bi = findbot(source); - ircdproto->SendNotice(bi, dest, msg); -} - void anope_cmd_action(const char *source, const char *dest, const char *fmt, ...) { va_list args; |