diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/channel_mode.h | 3 | ||||
-rw-r--r-- | include/client.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/include/channel_mode.h b/include/channel_mode.h index 76136ec..755c17a 100644 --- a/include/channel_mode.h +++ b/include/channel_mode.h @@ -44,7 +44,8 @@ enum CHACCESS_NOTONCHAN = -1, CHACCESS_PEON = 0, CHACCESS_HALFOP = 1, - CHACCESS_CHANOP = 2 + CHACCESS_CHANOP = 2, + CHACCESS_GOD = 3 }; /* can_send results */ diff --git a/include/client.h b/include/client.h index e799eca..a983cd5 100644 --- a/include/client.h +++ b/include/client.h @@ -168,7 +168,7 @@ struct MaskItem; #define UMODE_HIDDENHOST 0x01000000 /**< User's host is hidden */ #define UMODE_SSL 0x02000000 /**< User is connected via TLS/SSL */ #define UMODE_WEBIRC 0x04000000 /**< User connected via a webirc gateway */ -#define UMODE_GCHANOP 0x08000000 /**< Global channel operator */ +#define UMODE_GOD 0x08000000 /**< Operator is God */ #define UMODE_ALL UMODE_SERVNOTICE @@ -181,7 +181,7 @@ struct MaskItem; UMODE_REGONLY | UMODE_REGISTERED | UMODE_ADMIN |\ UMODE_HIDDEN | UMODE_HIDDENHOST | UMODE_SSL |\ UMODE_WEBIRC | UMODE_CALLERID | UMODE_SOFTCALLERID |\ - UMODE_GCHANOP) + UMODE_GOD) |