diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:11 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:11 +0000 |
commit | 914e0359e0225f84698990117b45f8218a788983 (patch) | |
tree | f907f0d74ea7e74f7966c97f5b2e8a1716cd991e /src/messages.c | |
parent | 56084dce3308e25b5e48d6b7a3fd7eeb45f694e8 (diff) |
Move stuff to a bots class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1224 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/messages.c')
-rw-r--r-- | src/messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/messages.c b/src/messages.c index eca2d07ca..169cb8ec6 100644 --- a/src/messages.c +++ b/src/messages.c @@ -49,7 +49,7 @@ int m_kill(const char *nick, const char *msg) introduce_user(nick); } else if (s_BotServ && (bi = findbot(nick))) { introduce_user(nick); - bot_rejoin_all(bi); + bi->RejoinAll(); } else { do_kill(nick, msg); } |