diff options
author | Adam <Adam@anope.org> | 2012-10-30 21:22:10 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-10-30 21:22:10 -0400 |
commit | 1730bfb2bc2a664f6b555152c1251384669ee661 (patch) | |
tree | e6f1f8a9a5d18ef5afe28beb841e6fb298c8b349 /src/config.cpp | |
parent | 26a4a13cdff2933b77da986ccc38f3538beaaea7 (diff) |
Send uids everywhere when setting modes on clients
Diffstat (limited to 'src/config.cpp')
-rw-r--r-- | src/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.cpp b/src/config.cpp index 839a82c18..735b4a4e7 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -1032,7 +1032,7 @@ static bool DoServices(ServerConfig *config, const Anope::string &, const Anope: if (cm == NULL) cm = ModeManager::FindChannelModeByChar(ModeManager::GetStatusChar(want_modes[j])); if (cm && cm->Type == MODE_STATUS) - c->SetMode(bi, cm, bi->nick); + c->SetMode(bi, cm, bi->GetUID()); } } for (unsigned i = 0; i < oldchannels.size(); ++i) |