updates from Brain:
[01:57] Brain hi [01:57] Brain i noticed a bug in the inspircd protocol module [01:57] * LimitServ sets modes [#neostats +l 20] [01:57] Brain http://svn.neostats.net/cgi-bin/viewvc.cgi/NeoStats/trunk/modules/protocol/inspircd.c?revision=3294&view=markup [01:57] Brain lines 264 and 265 [01:58] Brain those are the wrong FJOIN prefixes for owner and protect [01:58] Brain owner is ~ and protect is & in inspircd [01:58] Brain and you made a comment that 'treating , as a prefix shouldnt break stuff'.... youre right as far as inspircd is concerned it shouldnt break it :p
This commit is contained in:
parent
669463d9f5
commit
e5d9f7c382
1 changed files with 2 additions and 2 deletions
|
@ -261,8 +261,8 @@ irc_cmd cmd_list[] =
|
|||
mode_init chan_umodes[] =
|
||||
{
|
||||
{'h', CUMODE_HALFOP, 0, '%'},
|
||||
{'a', CUMODE_CHANPROT, 0, '~'},
|
||||
{'q', CUMODE_CHANOWNER, 0, '*'},
|
||||
{'a', CUMODE_CHANPROT, 0, '&'},
|
||||
{'q', CUMODE_CHANOWNER, 0, '~'},
|
||||
/* this shouldn't break stuff, but will have to see */
|
||||
{' ', CUMODE_NOTHING, 0, ','},
|
||||
MODE_INIT_END()
|
||||
|
|
Reference in a new issue