mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-06 21:43:13 +02:00
+- Disabled anything with time in /list options temporary, causes bugs
This commit is contained in:
@@ -506,3 +506,4 @@
|
||||
- +u now lists +a and +q people, and sends JOINs/PARTs to +a and +q people
|
||||
- Fixed a /mode (umode) typo where it said no such channel rather than no such nick,
|
||||
reported by llthangel
|
||||
- Disabled anything with time in /list options temporary, causes bugs
|
||||
|
||||
+3
-2
@@ -3704,16 +3704,17 @@ void send_list(aClient *cptr, int numsend)
|
||||
&& !IsMember(cptr, chptr)
|
||||
&& !IsAnOper(cptr))
|
||||
continue;
|
||||
|
||||
if ((!lopt->showall)
|
||||
&& ((chptr->users < lopt->usermin) || ((lopt->usermax >= 0)
|
||||
&& (chptr->users > lopt->usermax))
|
||||
|| ((chptr->creationtime) <= lopt->chantimemin)
|
||||
|| (chptr->topic_time <
|
||||
/* || (chptr->topic_time <
|
||||
lopt->topictimemin)
|
||||
|| (chptr->creationtime >=
|
||||
lopt->chantimemax)
|
||||
|| (chptr->topic_time >
|
||||
lopt->topictimemax)))
|
||||
lopt->topictimemax) */))
|
||||
continue;
|
||||
|
||||
if (lopt->nolist &&
|
||||
|
||||
Reference in New Issue
Block a user