diff options
| author | 2025-04-05 19:24:49 +0100 | |
|---|---|---|
| committer | 2025-04-06 00:45:31 +0100 | |
| commit | 28073d2506685a508135a487b41ea3aed63bf522 (patch) | |
| tree | c2328a7a857a2910ac9849eaa6b0c9b9091711f0 /src/modules.cpp | |
| parent | Rewrite every single hash module for the new interface. (diff) | |
Delete the old hashing interface and modules.
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index f8c589479..6c386cc9c 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -142,7 +142,6 @@ ModResult Module::OnCheckLimit(User*, Channel*) { DetachEvent(I_OnCheckLimit); r ModResult Module::OnCheckChannelBan(User*, Channel*) { DetachEvent(I_OnCheckChannelBan); return MOD_RES_PASSTHRU; } ModResult Module::OnCheckBan(User*, Channel*, const std::string&) { DetachEvent(I_OnCheckBan); return MOD_RES_PASSTHRU; } ModResult Module::OnPreTopicChange(User*, Channel*, const std::string&) { DetachEvent(I_OnPreTopicChange); return MOD_RES_PASSTHRU; } -ModResult Module::OnCheckPassword(const std::string&, const std::string&, const std::string&) { DetachEvent(I_OnCheckPassword); return MOD_RES_PASSTHRU; } void Module::OnPostConnect(User*) { DetachEvent(I_OnPostConnect); } void Module::OnUserPostMessage(User*, const MessageTarget&, const MessageDetails&) { DetachEvent(I_OnUserPostMessage); } void Module::OnUserMessageBlocked(User*, const MessageTarget&, const MessageDetails&) { DetachEvent(I_OnUserMessageBlocked); } |
