diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-08 19:54:23 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-08 19:54:23 +0000 |
commit | a3555a1c998259cd24fff56184f81738253f4975 (patch) | |
tree | 164843fcd66eac0482baa731837d565cc2e0ea1f | |
parent | 40c415d36132c30c0325bfa84c17d49187f8e729 (diff) |
- Added 'nononreg' (+R) to general::oper_umodes
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@1978 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r-- | src/conf_parser.y | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/conf_parser.y b/src/conf_parser.y index 3ce2774..7b6f7e1 100644 --- a/src/conf_parser.y +++ b/src/conf_parser.y @@ -2655,6 +2655,9 @@ umode_oitem: T_BOTS } | T_LOCOPS { ConfigFileEntry.oper_umodes |= UMODE_LOCOPS; +} | T_NONONREG +{ + ConfigFileEntry.oper_umodes |= UMODE_REGONLY; } | T_FARCONNECT { ConfigFileEntry.oper_umodes |= UMODE_FARCONNECT; |