diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-09-03 14:15:18 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-09-03 14:15:18 +0200 |
commit | 8d066e557eeabaea40634dec8d6f5cd4d39cfe60 (patch) | |
tree | a21de266d8acdc51ebca36da865f1288c441a94b /src | |
parent | f3e803f5b9d8478e1f4d490a2f59ba7fca10a6b9 (diff) |
Pass the modes to the OnMode hook as a Modes::ChangeList, pass ModeProcessFlags too
Diffstat (limited to 'src')
-rw-r--r-- | src/mode.cpp | 2 | ||||
-rw-r--r-- | src/modules.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mode.cpp b/src/mode.cpp index b684af885..66ce313f4 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -503,7 +503,7 @@ void ModeParser::Process(const std::vector<std::string>& parameters, User* user, else targetuser->WriteFrom(user, "MODE " + LastParse); - FOREACH_MOD(OnMode, (user, targetuser, targetchannel, LastParseParams, LastParseTranslate)); + FOREACH_MOD(OnMode, (user, targetuser, targetchannel, LastChangeList, flags, output_mode)); } else if (targetchannel && parameters.size() == 2) { diff --git a/src/modules.cpp b/src/modules.cpp index cb5b9c32c..7e932ed72 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -86,7 +86,7 @@ void Module::OnUserPart(Membership*, std::string&, CUList&) { DetachEvent(I_OnU void Module::OnPreRehash(User*, const std::string&) { DetachEvent(I_OnPreRehash); } void Module::OnModuleRehash(User*, const std::string&) { DetachEvent(I_OnModuleRehash); } ModResult Module::OnUserPreJoin(LocalUser*, Channel*, const std::string&, std::string&, const std::string&) { DetachEvent(I_OnUserPreJoin); return MOD_RES_PASSTHRU; } -void Module::OnMode(User*, User*, Channel*, const std::vector<std::string>&, const std::vector<TranslateType>&) { DetachEvent(I_OnMode); } +void Module::OnMode(User*, User*, Channel*, const Modes::ChangeList&, ModeParser::ModeProcessFlag, const std::string&) { DetachEvent(I_OnMode); } void Module::OnOper(User*, const std::string&) { DetachEvent(I_OnOper); } void Module::OnPostOper(User*, const std::string&, const std::string &) { DetachEvent(I_OnPostOper); } void Module::OnInfo(User*) { DetachEvent(I_OnInfo); } |