1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 18:36:39 +02:00

Brought back the old 1.7 behavior of a level -1 matching all users and 0 matching all identified users

This commit is contained in:
Adam
2011-08-14 18:50:22 -04:00
parent fddb2304c6
commit 960c339a4c
10 changed files with 38 additions and 11 deletions
+1 -1
View File
@@ -13,7 +13,7 @@
Anope::insensitive_map<BotInfo *> BotListByNick;
Anope::map<BotInfo *> BotListByUID;
BotInfo::BotInfo(const Anope::string &nnick, const Anope::string &nuser, const Anope::string &nhost, const Anope::string &nreal, const Anope::string &modes) : User(nnick, nuser, nhost, ts6_uid_retrieve()), Flags<BotFlag, BI_END>(BotFlagString), botmodes(modes)
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, ts6_uid_retrieve()), Flags<BotFlag, BI_END>(BotFlagString), botmodes(bmodes)
{
this->realname = nreal;
this->server = Me;