summaryrefslogtreecommitdiff
path: root/src/init.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-03 22:30:33 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-03 22:30:33 +0000
commit16a90d28f61707b2f053b163e33c6678bd861971 (patch)
treea67784e553135ab1a519ff5ee685a07702f4573a /src/init.c
parentdc44944c713d5d19a7d6e7fa443dde03fe4d9832 (diff)
Undo me smoking a nice pipe of craq on UID support (no wonder this wasn't working), and fix findbot() to do what we want.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1524 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/init.c')
-rw-r--r--src/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.c b/src/init.c
index 6ba89f052..4d31551bb 100644
--- a/src/init.c
+++ b/src/init.c
@@ -42,7 +42,7 @@ void introduce_user(const char *user)
for (bi = botlists[i]; bi; bi = bi->next)
{
if (!user || !stricmp(user, bi->nick))
- ircdproto->SendClientIntroduction(bi->nick, bi->user, bi->host, bi->real, ircd->botserv_bot_mode);
+ ircdproto->SendClientIntroduction(bi->nick, bi->user, bi->host, bi->real, ircd->botserv_bot_mode, bi->uid.c_str());
}
}
}