summaryrefslogtreecommitdiff
path: root/include/account.h
diff options
context:
space:
mode:
authorAdam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864>2010-02-04 23:49:27 +0000
committerAdam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864>2010-02-04 23:49:27 +0000
commit308070e01971b0cfaf77de20011f48ce4d6b5a1c (patch)
tree2bdfd84e35cf79eb20dc2a79ddd233789ca84fdf /include/account.h
parent3d4cf39940144be19645a3a7cdecf95213b96f26 (diff)
We now store a list of users using a NickCore in the NickCore, this prevents having to loop every user all the time to find them
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2780 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/account.h')
-rw-r--r--include/account.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/account.h b/include/account.h
index 02e6508d4..3f39c3b4a 100644
--- a/include/account.h
+++ b/include/account.h
@@ -122,6 +122,8 @@ class CoreExport NickCore : public Extensible, public Flags<NickCoreFlag>
NickCore *next, *prev;
+ std::list<User *> Users;
+
char *display; /* How the nick is displayed */
std::string pass; /* Password of the nicks */
char *email; /* E-mail associated to the nick */