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:
Fish 2008-03-16 03:31:46 +00:00
parent 669463d9f5
commit e5d9f7c382

View file

@ -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()