diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-21 12:54:02 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-21 12:54:02 +0000 |
commit | d345d7c9aa42f015b44ea9c13775edf5d9616f90 (patch) | |
tree | 03647fddd41b0447a904633c4ac6f5f0964f8673 | |
parent | b80d1be349a5a5dbb16cde08d59543a553f9a382 (diff) |
In class User:
/** If this bool is set then penalty rules do not apply to this user
*/
bool ExemptFromPenalty;
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8247 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/users.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/users.h b/include/users.h index f516a8038..f43c787a0 100644 --- a/include/users.h +++ b/include/users.h @@ -688,6 +688,10 @@ class CoreExport User : public connection */ bool UnderPenalty; + /** If this bool is set then penalty rules do not apply to this user + */ + bool ExemptFromPenalty; + /** Default constructor * @throw CoreException if the UID allocated to the user already exists * @param Instance Creator instance |