diff options
| author | 2014-09-03 14:15:18 +0200 | |
|---|---|---|
| committer | 2014-09-03 14:15:18 +0200 | |
| commit | 8d066e557eeabaea40634dec8d6f5cd4d39cfe60 (patch) | |
| tree | a21de266d8acdc51ebca36da865f1288c441a94b /src/modules.cpp | |
| parent | Populate a Modes::ChangeList object in ModeParser::Process() (diff) | |
Pass the modes to the OnMode hook as a Modes::ChangeList, pass ModeProcessFlags too
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |
