diff options
author | Adam <Adam@anope.org> | 2010-10-31 14:01:39 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-10-31 14:01:39 -0400 |
commit | c5fc11f5fe92b31200dc6cf542514b1ffeb70c44 (patch) | |
tree | 26b98fed8f5b68d6546cce70bc727d9fa0d3bf45 /src/protocol/plexus3.h | |
parent | bf2f151c68fc9b662281a4d04766ccc7f86c8208 (diff) |
Fixed bug #1202 - Made Anope aware of plexus3's channel mode +z
Diffstat (limited to 'src/protocol/plexus3.h')
-rw-r--r-- | src/protocol/plexus3.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/protocol/plexus3.h b/src/protocol/plexus3.h index 90d8a556e..4d83a2bdb 100644 --- a/src/protocol/plexus3.h +++ b/src/protocol/plexus3.h @@ -36,8 +36,9 @@ #define CMODE_N 0x00010000 #define CMODE_B 0x00020000 #define CMODE_S 0x00040000 +#define CMODE_z 0x00080000 -#define DEFAULT_MLOCK CMODE_n | CMODE_t +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_z void plexus_set_umode(User * user, int ac, char **av); void plexus_cmd_svsnoop(char *server, int set); |