mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-10 19:03:12 +02:00
extending vl a bit..
This commit is contained in:
@@ -813,10 +813,14 @@ EVENT(e_clean_out_throttling_buckets)
|
||||
{ p = strchr(serveropts, 'm'); *p = '\0'; }
|
||||
if (!Hooks[18] && strchr(serveropts, 'M'))
|
||||
{ p = strchr(serveropts, 'M'); *p = '\0'; }
|
||||
if (!Hooks[49] && strchr(serveropts, 'R'))
|
||||
{ p = strchr(serveropts, 'R'); *p = '\0'; }
|
||||
if (Hooks[17] && !strchr(serveropts, 'm'))
|
||||
*p++ = 'm';
|
||||
if (Hooks[18] && !strchr(serveropts, 'M'))
|
||||
*p++ = 'M';
|
||||
if (Hooks[49] && !strchr(serveropts, 'R'))
|
||||
*p++ = 'R';
|
||||
*p = '\0';
|
||||
for (mi = Modules; mi; mi = mi->next)
|
||||
if (!(mi->options & MOD_OPT_OFFICIAL))
|
||||
|
||||
Reference in New Issue
Block a user