diff options
| author | 2015-11-10 17:20:23 +0100 | |
|---|---|---|
| committer | 2015-11-10 17:20:23 +0100 | |
| commit | 903a0075d3c123b16128b9f8f2eb36878c28e282 (patch) | |
| tree | 46e8c60157f98464ae55e7ea5609ffc091422733 /src/modules/m_hostcycle.cpp | |
| parent | Merge branch 'master+invite' (diff) | |
| parent | Remove UserManager::GarbageCollect() (diff) | |
Merge branch 'master+alreadysent'
Diffstat (limited to 'src/modules/m_hostcycle.cpp')
| -rw-r--r-- | src/modules/m_hostcycle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_hostcycle.cpp b/src/modules/m_hostcycle.cpp index e8a0abbf1..d4def6473 100644 --- a/src/modules/m_hostcycle.cpp +++ b/src/modules/m_hostcycle.cpp @@ -29,8 +29,8 @@ class ModuleHostCycle : public Module // GetFullHost() returns the original data at the time this function is called const std::string quitline = ":" + user->GetFullHost() + " QUIT :" + quitmsg; - already_sent_t silent_id = ++LocalUser::already_sent_id; - already_sent_t seen_id = ++LocalUser::already_sent_id; + already_sent_t silent_id = ServerInstance->Users.NextAlreadySentId(); + already_sent_t seen_id = ServerInstance->Users.NextAlreadySentId(); IncludeChanList include_chans(user->chans.begin(), user->chans.end()); std::map<User*,bool> exceptions; |
