diff options
author | Adam <Adam@drink-coca-cola.info> | 2010-05-13 14:56:13 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-18 21:01:17 -0400 |
commit | 81a45520a773732c9f46785f27aa1956150775d7 (patch) | |
tree | b37c2ad0d77e3ba1b4c7c6e09fa07812eb03add5 /src/bots.cpp | |
parent | e6263dba84b80f03d02c379ace081e602f8ef199 (diff) |
Added some global variables for the core pseudo clients, keeps us from having to call findbot() everywhere
Diffstat (limited to 'src/bots.cpp')
-rw-r--r-- | src/bots.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/bots.cpp b/src/bots.cpp index f65f2a35e..6f544a64a 100644 --- a/src/bots.cpp +++ b/src/bots.cpp @@ -12,6 +12,14 @@ #include "modules.h" #include "commands.h" +BotInfo *BotServ = NULL; +BotInfo *ChanServ = NULL; +BotInfo *Global = NULL; +BotInfo *HostServ = NULL; +BotInfo *MemoServ = NULL; +BotInfo *NickServ = NULL; +BotInfo *OperServ = NULL; + BotInfo::BotInfo(const std::string &nnick, const std::string &nuser, const std::string &nhost, const std::string &nreal) { this->nick = nnick; @@ -27,36 +35,43 @@ BotInfo::BotInfo(const std::string &nnick, const std::string &nuser, const std:: ci::string ci_nick(nnick.c_str()); if (Config.s_ChanServ && ci_nick == Config.s_ChanServ) { + ChanServ = this; this->cmdTable = CHANSERV; this->SetFlag(BI_CHANSERV); } else if (Config.s_BotServ && ci_nick == Config.s_BotServ) { + BotServ = this; this->cmdTable = BOTSERV; this->SetFlag(BI_BOTSERV); } else if (Config.s_HostServ && ci_nick == Config.s_HostServ) { + HostServ = this; this->cmdTable = HOSTSERV; this->SetFlag(BI_HOSTSERV); } else if (Config.s_OperServ && ci_nick == Config.s_OperServ) { + OperServ = this; this->cmdTable = OPERSERV; this->SetFlag(BI_OPERSERV); } else if (Config.s_MemoServ && ci_nick == Config.s_MemoServ) { + MemoServ = this; this->cmdTable = MEMOSERV; this->SetFlag(BI_MEMOSERV); } else if (Config.s_NickServ && ci_nick == Config.s_NickServ) { + NickServ = this; this->cmdTable = NICKSERV; this->SetFlag(BI_NICKSERV); } else if (Config.s_GlobalNoticer && ci_nick == Config.s_GlobalNoticer) { + Global = this; this->SetFlag(BI_GLOBAL); } |