diff options
author | Peter Powell <petpow@saberuk.com> | 2018-08-14 00:17:03 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-08-14 00:18:13 +0100 |
commit | 10b17a0e9f948b1dd4f69c9af1f55f712664d155 (patch) | |
tree | dac8e9e5f2ec9440f44d4f96b50dd41931e65bf1 /src | |
parent | 23e29119f82a373e641b6bf9479c39149e36b1dd (diff) |
Remove the OnInfo event.
This is not used by anything and On{Post,Pre}Command hooks can
be used if people really want to add stuff to INFO.
Diffstat (limited to 'src')
-rw-r--r-- | src/coremods/core_info/cmd_info.cpp | 2 | ||||
-rw-r--r-- | src/modules.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/coremods/core_info/cmd_info.cpp b/src/coremods/core_info/cmd_info.cpp index 89e92e5a8..54aa7e16e 100644 --- a/src/coremods/core_info/cmd_info.cpp +++ b/src/coremods/core_info/cmd_info.cpp @@ -85,7 +85,7 @@ CmdResult CommandInfo::Handle(User* user, const Params& parameters) int i=0; while (lines[i]) user->WriteRemoteNumeric(RPL_INFO, lines[i++]); - FOREACH_MOD(OnInfo, (user)); + user->WriteRemoteNumeric(RPL_ENDOFINFO, "End of /INFO list"); return CMD_SUCCESS; } diff --git a/src/modules.cpp b/src/modules.cpp index 7912fb569..866138728 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -83,7 +83,6 @@ void Module::OnMode(User*, User*, Channel*, const Modes::ChangeList&, ModeParse 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::OnPostDeoper(User*) { DetachEvent(I_OnPostDeoper); } -void Module::OnInfo(User*) { DetachEvent(I_OnInfo); } ModResult Module::OnUserPreInvite(User*, User*, Channel*, time_t) { DetachEvent(I_OnUserPreInvite); return MOD_RES_PASSTHRU; } ModResult Module::OnUserPreMessage(User*, const MessageTarget&, MessageDetails&) { DetachEvent(I_OnUserPreMessage); return MOD_RES_PASSTHRU; } ModResult Module::OnUserPreNick(LocalUser*, const std::string&) { DetachEvent(I_OnUserPreNick); return MOD_RES_PASSTHRU; } |