1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 03:56:38 +02:00

Make the actual clients into services too

This commit is contained in:
Adam
2012-11-24 21:22:32 -05:00
parent f0708340ef
commit 0210cf2b17
16 changed files with 68 additions and 23 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ static const Anope::string BotServFlagStrings[] = {
};
template<> const Anope::string* Flags<BotServFlag>::flags_strings = BotServFlagStrings;
BotInfo::BotInfo(const Anope::string &nnick, const Anope::string &nuser, const Anope::string &nhost, const Anope::string &nreal, const Anope::string &bmodes) : User(nnick, nuser, nhost, "", "", Me, nreal, Anope::CurTime, "", Servers::TS6_UID_Retrieve()), Serializable("BotInfo"), botmodes(bmodes)
BotInfo::BotInfo(const Anope::string &nnick, const Anope::string &nuser, const Anope::string &nhost, const Anope::string &nreal, const Anope::string &bmodes) : User(nnick, nuser, nhost, "", "", Me, nreal, Anope::CurTime, "", Servers::TS6_UID_Retrieve()), Serializable("BotInfo"), Service(NULL, "BotInfo", nnick), botmodes(bmodes)
{
this->lastmsg = this->created = Anope::CurTime;
this->introduced = false;