mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-08 14:43:11 +02:00
- Fixed chmode +u again.
This commit is contained in:
@@ -1929,3 +1929,4 @@ seen. gmtime warning still there
|
||||
- Updated win32 compile instructions
|
||||
- Fixed set::dns error messages
|
||||
- Fixed win32 compile error
|
||||
- Fixed chmode +u again.
|
||||
|
||||
+2
-1
@@ -977,7 +977,8 @@ void sendto_common_channels(aClient *user, char *pattern, ...)
|
||||
cptr = users->cptr;
|
||||
if (!MyConnect(cptr) || sentalong[cptr->slot] == sentalong_marker)
|
||||
continue;
|
||||
if ((channels->chptr->mode.mode & MODE_AUDITORIUM) && !is_chanownprotop(user, channels->chptr))
|
||||
if ((channels->chptr->mode.mode & MODE_AUDITORIUM) &&
|
||||
!(is_chanownprotop(user, channels->chptr) || is_chanownprotop(cptr, channels->chptr)))
|
||||
continue;
|
||||
sentalong[cptr->slot] = sentalong_marker;
|
||||
vsendto_prefix_one(cptr, user, pattern, vl);
|
||||
|
||||
Reference in New Issue
Block a user