diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-01 21:41:52 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-01 21:41:52 +0000 |
commit | 75d9c67804196c2e4059f3ff89f2ed5ee79a175f (patch) | |
tree | e5275c998f06bbe13e198c7a42b2cfc917be5e4f /include/modules.h | |
parent | 6e6846b68a28d858275702e6662e79328e62c60e (diff) |
Add ROUTE_TYPE_MESSAGE and use for PRIVMSG/NOTICE routing
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11791 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/modules.h b/include/modules.h index ff52cd600..edfe31007 100644 --- a/include/modules.h +++ b/include/modules.h @@ -35,7 +35,8 @@ enum ModuleFlags { VF_VENDOR = 2, // module is a vendor module (came in the original tarball, not 3rd party) VF_SERVICEPROVIDER = 4, // module provides a service to other modules (can be a dependency) VF_COMMON = 8, // module needs to be common on all servers in a network to link - VF_OPTCOMMON = 16 // module should be common on all servers for unsurprising behavior + VF_OPTCOMMON = 16, // module should be common on all servers for unsurprising behavior + VF_CORE = 32 // module is a core command, can be assumed loaded on all servers }; /** Used with SendToMode() |