diff options
| author | 2008-08-07 16:35:58 +0000 | |
|---|---|---|
| committer | 2008-08-07 16:35:58 +0000 | |
| commit | 6d64862fb556c43568efdf6b4f65de3fbd33c576 (patch) | |
| tree | 4a819a2c3fb6c1630d6df477a388f61dbe2a56ce /include | |
| parent | Restrict uninvite (diff) | |
| download | inspircd++-6d64862fb556c43568efdf6b4f65de3fbd33c576.tar.gz inspircd++-6d64862fb556c43568efdf6b4f65de3fbd33c576.tar.bz2 inspircd++-6d64862fb556c43568efdf6b4f65de3fbd33c576.zip | |
Implement <options:invitebypassmodes>, optionally circumvent +blk if invited on join. Based on a patch provided by mixx941, closes bug #589.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10120 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
| -rw-r--r-- | include/configreader.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/configreader.h b/include/configreader.h index 51eb2f5fd..9ec68b9e8 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -861,7 +861,11 @@ class CoreExport ServerConfig : public Extensible * @return True if the file exists and is readable. */ static bool FileExists(const char* file); - + + /** If this value is true, invites will bypass more than just +i + */ + bool InvBypassModes; + }; /** Initialize the disabled commands list |
