diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-02-14 12:00:06 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-02-14 12:00:06 +0100 |
commit | 51b5f06c48b98a256eb56ea5f7e4d5d170555e84 (patch) | |
tree | ccc93b4b9fc7c273f7ddfb9c44b6ddc1dec2e91a /src/modules/m_auditorium.cpp | |
parent | 3111038011b7414c5068563b2abe834267a368ad (diff) |
Return a Membership* from get_first_visible_channel() in cmd_who and pass that to modules
Diffstat (limited to 'src/modules/m_auditorium.cpp')
-rw-r--r-- | src/modules/m_auditorium.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/modules/m_auditorium.cpp b/src/modules/m_auditorium.cpp index 21afcabad..8ec80ef46 100644 --- a/src/modules/m_auditorium.cpp +++ b/src/modules/m_auditorium.cpp @@ -152,11 +152,10 @@ class ModuleAuditorium : public Module } } - void OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, Channel* channel, std::string& line) CXX11_OVERRIDE + void OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, Membership* memb, std::string& line) CXX11_OVERRIDE { - if (!channel) + if (!memb) return; - Membership* memb = channel->GetUser(user); if (IsVisible(memb)) return; if (CanSee(source, memb)) |