diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 17:46:06 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 17:46:06 +0000 |
commit | 95f24091f65943c69617bc462ee2175b8cfe257f (patch) | |
tree | a9fc9db04aeadab4415dd7b157154d84b9a29c8b /src/ircd.c | |
parent | ab07a491a49df5178fb6de1a1d7b3cf1dec8dfc4 (diff) |
Replaced anope_cmd_topic() with direct call to SendTopic() in IRCDProto class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1323 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 e82461cf2..5894b86c4 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -43,12 +43,6 @@ void anope_ProcessUsermodes(User *user, int ac, const char **av) ircdproto->ProcessUsermodes(user, ac, av); } -void anope_cmd_topic(const char *whosets, const char *chan, const char *whosetit, const char *topic, time_t when) -{ - BotInfo *bi = findbot(whosets); - ircdproto->SendTopic(bi, chan, whosetit, topic, when); -} - void anope_SendVhostDel(User *u) { ircdproto->SendVhostDel(u); |