diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:47:14 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:47:14 +0000 |
commit | e07a1a5ffab0a54ff04a7ff93b8c25c69992bf81 (patch) | |
tree | fafd969e2d110a15f2192cdf9c8fa3bd112a4ac4 /include | |
parent | 54ebc7b84d9018da7f5725e376d9f4bf60afbf74 (diff) |
Add VF_OPTCOMMON for optionally common modules
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11619 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-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 e67f287c8..3f36f23da 100644 --- a/include/modules.h +++ b/include/modules.h @@ -50,7 +50,8 @@ enum ModuleFlags { VF_STATIC = 1, // module is static, cannot be /unloadmodule'd 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_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 }; /** Used with SendToMode() |