summaryrefslogtreecommitdiff
path: root/include/modules.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2014-04-18 02:21:06 -0400
committerAdam <Adam@anope.org>2014-04-18 02:21:06 -0400
commit72b26043b2f1729a2d183b01310747303fe385fd (patch)
treebe629a5ee14efeba68acffe3f68268d709d961b6 /include/modules.h
parentf36915790674275627cf8eb68024e17539ee04fa (diff)
Remove unused event.
Mark some oper only usermodes as oper only. Fix reading SID in TS6_SID_Retrieve
Diffstat (limited to 'include/modules.h')
-rw-r--r--include/modules.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/modules.h b/include/modules.h
index 0d121089a..90dd23807 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -719,11 +719,6 @@ class CoreExport Module : public Extensible
*/
virtual void OnNickDrop(CommandSource &source, NickAlias *na) { throw NotImplementedException(); }
- /** Called when a nick is forbidden
- * @param na The nick alias of the forbidden nick
- */
- virtual void OnNickForbidden(NickAlias *na) { throw NotImplementedException(); }
-
/** Called when a user groups their nick
* @param u The user grouping
* @param target The target they're grouping to
@@ -1094,7 +1089,7 @@ enum Implementation
I_OnPreUserLogoff, I_OnPostUserLogoff, I_OnBotCreate, I_OnBotChange, I_OnBotDelete, I_OnAccessDel, I_OnAccessAdd,
I_OnAccessClear, I_OnLevelChange, I_OnChanDrop, I_OnChanRegistered, I_OnChanSuspend, I_OnChanUnsuspend,
I_OnCreateChan, I_OnDelChan, I_OnChannelCreate, I_OnChannelDelete, I_OnAkickAdd, I_OnAkickDel, I_OnCheckKick,
- I_OnChanInfo, I_OnCheckPriv, I_OnGroupCheckPriv, I_OnNickDrop, I_OnNickForbidden, I_OnNickGroup, I_OnNickIdentify,
+ I_OnChanInfo, I_OnCheckPriv, I_OnGroupCheckPriv, I_OnNickDrop, I_OnNickGroup, I_OnNickIdentify,
I_OnUserLogin, I_OnNickLogout, I_OnNickRegister, I_OnNickSuspend, I_OnNickUnsuspended, I_OnDelNick, I_OnNickCoreCreate,
I_OnDelCore, I_OnChangeCoreDisplay, I_OnNickClearAccess, I_OnNickAddAccess, I_OnNickEraseAccess, I_OnNickClearCert,
I_OnNickAddCert, I_OnNickEraseCert, I_OnNickInfo, I_OnBotInfo, I_OnCheckAuthentication, I_OnNickUpdate,