summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2013-06-02 18:05:01 +0200
committerattilamolnar <attilamolnar@hush.com>2013-06-02 18:05:01 +0200
commitca4c4a67988419b9eb479ffcf82238dc1648b0ad (patch)
treed70b93690bd3c4881b1b105570d653433af07de2 /include
parent94c248f9dac7b32189f45445896eeecd57ad1d36 (diff)
Route WALLOPS like a regular command, remove OnWallops hook
Diffstat (limited to 'include')
-rw-r--r--include/modules.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/include/modules.h b/include/modules.h
index 89961a6f5..959025367 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -361,7 +361,7 @@ enum Implementation
I_OnSendSnotice, I_OnUserPreJoin, I_OnUserPreKick, I_OnUserKick, I_OnOper, I_OnInfo, I_OnWhois,
I_OnUserPreInvite, I_OnUserInvite, I_OnUserPreMessage, I_OnUserPreNick,
I_OnUserMessage, I_OnMode, I_OnGetServerDescription, I_OnSyncUser,
- I_OnSyncChannel, I_OnDecodeMetaData, I_OnWallops, I_OnAcceptConnection, I_OnUserInit,
+ I_OnSyncChannel, I_OnDecodeMetaData, I_OnAcceptConnection, I_OnUserInit,
I_OnChangeHost, I_OnChangeName, I_OnAddLine, I_OnDelLine, I_OnExpireLine,
I_OnUserPostNick, I_OnPreMode, I_On005Numeric, I_OnKill, I_OnRemoteKill, I_OnLoadModule,
I_OnUnloadModule, I_OnBackgroundTimer, I_OnPreCommand, I_OnCheckReady, I_OnCheckInvite,
@@ -799,12 +799,6 @@ class CoreExport Module : public classbase, public usecountbase
*/
virtual void ProtoSendMetaData(void* opaque, Extensible* target, const std::string &extname, const std::string &extdata);
- /** Called after every WALLOPS command.
- * @param user The user sending the WALLOPS
- * @param text The content of the WALLOPS message
- */
- virtual void OnWallops(User* user, const std::string &text);
-
/** Called whenever a user's hostname is changed.
* This event triggers after the host has been set.
* @param user The user whos host is being changed