mirror of
https://github.com/pissnet/pissircd.git
synced 2025-08-05 09:45:23 +01:00
- m_join: translate between UID and non-UID
This commit is contained in:
parent
cb35cfd306
commit
56c6c504d1
1 changed files with 4 additions and 1 deletions
|
@ -333,7 +333,10 @@ DLLFUNC void _join_channel(aChannel *chptr, aClient *cptr, aClient *sptr, int fl
|
|||
/* I _know_ that the "@%s " look a bit wierd
|
||||
with the space and all .. but its to get around
|
||||
a SJOIN bug --stskeeps */
|
||||
sendto_server(cptr, PROTO_SJ3, 0, ":%s SJOIN %li %s :%s%s ",
|
||||
sendto_server(cptr, PROTO_SID | PROTO_SJ3, 0, ":%s SJOIN %li %s :%s%s ",
|
||||
me.id, chptr->creationtime,
|
||||
chptr->chname, chfl_to_sjoin_symbol(flags), ID(sptr));
|
||||
sendto_server(cptr, PROTO_SJ3, PROTO_SID, ":%s SJOIN %li %s :%s%s ",
|
||||
me.name, chptr->creationtime,
|
||||
chptr->chname, chfl_to_sjoin_symbol(flags), sptr->name);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue