diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-05-04 13:24:48 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-05-04 13:24:48 +0200 |
commit | 4711113dff7fc33c96f95f417f2813f28c690e01 (patch) | |
tree | 7ccecb9e52f6c13c233a3efe312410a1c8e526a0 /src/modules/m_customtitle.cpp | |
parent | 8aa03e455e14ea85cdee65527565975ddf558b88 (diff) | |
parent | 68bb6a67459298ca08eb18b60794619ddf782c77 (diff) |
Merge branch 'master+whoiscontext'
Diffstat (limited to 'src/modules/m_customtitle.cpp')
-rw-r--r-- | src/modules/m_customtitle.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/modules/m_customtitle.cpp b/src/modules/m_customtitle.cpp index 67eca6dda..b86bf1809 100644 --- a/src/modules/m_customtitle.cpp +++ b/src/modules/m_customtitle.cpp @@ -70,26 +70,28 @@ class CommandTitle : public Command }; -class ModuleCustomTitle : public Module +class ModuleCustomTitle : public Module, public Whois::LineEventListener { CommandTitle cmd; public: - ModuleCustomTitle() : cmd(this) + ModuleCustomTitle() + : Whois::LineEventListener(this) + , cmd(this) { } // :kenny.chatspike.net 320 Brain Azhrarn :is getting paid to play games. - ModResult OnWhoisLine(User* user, User* dest, int &numeric, std::string &text) CXX11_OVERRIDE + ModResult OnWhoisLine(Whois::Context& whois, unsigned int& numeric, std::string& text) CXX11_OVERRIDE { /* We use this and not OnWhois because this triggers for remote, too */ if (numeric == 312) { /* Insert our numeric before 312 */ - const std::string* ctitle = cmd.ctitle.get(dest); + const std::string* ctitle = cmd.ctitle.get(whois.GetTarget()); if (ctitle) { - ServerInstance->SendWhoisLine(user, dest, 320, "%s :%s", dest->nick.c_str(), ctitle->c_str()); + whois.SendLine(320, ":%s", ctitle->c_str()); } } /* Don't block anything */ |