1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 02:26:38 +02:00

Rewrote all of the command handling to get rid of all the nasty strtoks() everywhere, and added a bot map by uid

This commit is contained in:
Adam
2010-05-29 20:44:31 -04:00
committed by Adam
parent 435c9116e9
commit b8f9116b19
24 changed files with 371 additions and 398 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ void introduce_user(const std::string &user)
/* We make the bots go online */
/* XXX: it might be nice to have this inside BotInfo's constructor, or something? */
for (botinfo_map::const_iterator it = BotList.begin(); it != BotList.end(); ++it)
for (botinfo_map::const_iterator it = BotListByNick.begin(); it != BotListByNick.end(); ++it)
{
BotInfo *bi = it->second;