summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864>2009-08-21 20:55:20 +0000
committeradam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864>2009-08-21 20:55:20 +0000
commitbcf9852eecc1905632c284e4665c745173c9e9b7 (patch)
treeb745611dfd23f5b6c338ab856251b533beb8be72
parenta17d3dc27e3fb860568e170ee8d11dfb0aa22fc5 (diff)
Fixed bug #1095, do not resend client introduction when using /botserv bot add and initialized chancount in BotInfo constructor
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2460 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--src/bots.cpp2
-rw-r--r--src/core/bs_bot.c14
2 files changed, 3 insertions, 13 deletions
diff --git a/src/bots.cpp b/src/bots.cpp
index cef77ec9d..2dbaa8b83 100644
--- a/src/bots.cpp
+++ b/src/bots.cpp
@@ -21,6 +21,7 @@ BotInfo::BotInfo(const char *nnick)
nbots++;
this->cmdTable = NULL;
this->flags = 0;
+ this->chancount = 0;
if (s_ChanServ && !stricmp(s_ChanServ, nnick))
this->flags |= BI_CHANSERV;
@@ -55,6 +56,7 @@ BotInfo::BotInfo(const char *nnick, const char *nuser, const char *nhost, const
nbots++;
this->cmdTable = NULL;
this->flags = 0;
+ this->chancount = 0;
if (s_ChanServ && !stricmp(s_ChanServ, nnick))
this->flags |= BI_CHANSERV;
diff --git a/src/core/bs_bot.c b/src/core/bs_bot.c
index 78ad93737..8ab832b8d 100644
--- a/src/core/bs_bot.c
+++ b/src/core/bs_bot.c
@@ -107,27 +107,15 @@ class CommandBSBot : public Command
return MOD_CONT;
}
- bi = new BotInfo(nick);
- if (!bi)
+ if (!(bi = new BotInfo(nick, user, host, real)))
{
notice_lang(s_BotServ, u, BOT_BOT_CREATION_FAILED);
return MOD_CONT;
}
- bi->user = sstrdup(user);
- bi->host = sstrdup(host);
- bi->real = sstrdup(real);
- bi->created = time(NULL);
- bi->flags = 0;
- bi->chancount = 0;
-
/* We check whether user with this nick is online, and kill it if so */
EnforceQlinedNick(nick, s_BotServ);
- /* We make the bot online, ready to serve */
- ircdproto->SendClientIntroduction(bi->nick, bi->user, bi->host, bi->real,
- ircd->pseudoclient_mode, bi->uid.c_str());
-
notice_lang(s_BotServ, u, BOT_BOT_ADDED, bi->nick, bi->user,
bi->host, bi->real);