diff options
| author | 2014-07-19 14:28:51 +0200 | |
|---|---|---|
| committer | 2014-07-19 14:28:51 +0200 | |
| commit | e5ada400b0f2e2ae02f40867450a6789126da6e3 (patch) | |
| tree | 2bb90da3198a359c4c0ea95bf3bfc8731808f7a4 /src/modules/m_modenotice.cpp | |
| parent | Move and rename typedef LocalUserList to UserManager::LocalList (diff) | |
Access local user list via new UserManager::GetLocalUsers() and make local_users private
Diffstat (limited to 'src/modules/m_modenotice.cpp')
| -rw-r--r-- | src/modules/m_modenotice.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_modenotice.cpp b/src/modules/m_modenotice.cpp index 0078c6325..056eb4a62 100644 --- a/src/modules/m_modenotice.cpp +++ b/src/modules/m_modenotice.cpp @@ -32,7 +32,8 @@ class CommandModeNotice : public Command { std::string msg = "*** From " + src->nick + ": " + parameters[1]; int mlen = parameters[0].length(); - for (UserManager::LocalList::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); ++i) + const UserManager::LocalList& list = ServerInstance->Users.GetLocalUsers(); + for (UserManager::LocalList::const_iterator i = list.begin(); i != list.end(); ++i) { User* user = *i; for (int n = 0; n < mlen; n++) |
