mirror of
https://github.com/anope/anope.git
synced 2026-07-04 19:33:12 +02:00
Rewrote all of the old C style flag systems into a new Flag class which everything inherits from. This breaks reading and writing flags to the old databases (and probably many other things aswell) - Don't use it
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2636 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
+6
-1
@@ -7,9 +7,14 @@ NickCore::NickCore()
|
||||
display = email = greet = url = NULL;
|
||||
ot = NULL;
|
||||
pass[0] = '\0';
|
||||
icq = flags = 0;
|
||||
icq = 0;
|
||||
language = channelcount = 0;
|
||||
lastmail = 0;
|
||||
|
||||
/* Set default nick core flags */
|
||||
for (size_t t = NI_BEGIN + 1; t != NI_END; ++t)
|
||||
if (NSDefFlags.HasFlag((NickCoreFlag)t))
|
||||
SetFlag((NickCoreFlag)t);
|
||||
}
|
||||
|
||||
bool NickCore::HasCommand(const std::string &cmdstr) const
|
||||
|
||||
Reference in New Issue
Block a user