Fix extended-join not sending any joins at all.
Note that IsCapable(x, NOCAPS) always returns true.
This commit is contained in:
parent
2fb0796158
commit
e2b507ac41
1 changed files with 1 additions and 1 deletions
|
@ -684,7 +684,7 @@ sendto_channel_local_with_capability(int type, int caps, int negcaps, struct Cha
|
||||||
|
|
||||||
if(IsIOError(target_p) ||
|
if(IsIOError(target_p) ||
|
||||||
!IsCapable(target_p, caps) ||
|
!IsCapable(target_p, caps) ||
|
||||||
IsCapable(target_p, negcaps))
|
!NotCapable(target_p, negcaps))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if(type && ((msptr->flags & type) == 0))
|
if(type && ((msptr->flags & type) == 0))
|
||||||
|
|
Loading…
Reference in a new issue