Skip to content

Commit

Permalink
Fix adding botflag s for a channel. Fixes #525
Browse files Browse the repository at this point in the history
Found by: A user
Patch by: Cizzle
Fixes: #525
  • Loading branch information
Cizzle authored and vanosg committed Oct 1, 2018
1 parent 43b0ce5 commit 39cbb0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/flags.h
Expand Up @@ -50,11 +50,11 @@ struct flag_record {
* unused letters: bcdefjkmnoqtuvwxyz * unused letters: bcdefjkmnoqtuvwxyz
* *
* chanflags: * chanflags:
* a??defg???klmno?qr???vw?yz + user defined A-Z * a??defg???klmno?qrs??vw?yz + user defined A-Z
* unused letters: bchijpstuw * unused letters: bchijptuw (s from bot flags)
*/ */
#define USER_VALID 0x003fbfeff /* Sum of all valid USER_ flags */ #define USER_VALID 0x003fbfeff /* Sum of all valid USER_ flags */
#define CHAN_VALID 0x003637c79 /* Sum of all valid CHAN_ flags */ #define CHAN_VALID 0x003677c79 /* Sum of all valid CHAN_ flags */
#define BOT_VALID 0x07fe689C1 /* Sum of all valid BOT_ flags */ #define BOT_VALID 0x07fe689C1 /* Sum of all valid BOT_ flags */




Expand Down

0 comments on commit 39cbb0c

Please sign in to comment.