m_remove: fix parameter order on PART message
This commit is contained in:
parent
bde42c6063
commit
deee7b4388
1 changed files with 2 additions and 2 deletions
|
@ -198,8 +198,8 @@ m_remove(struct Client *client_p, struct Client *source_p, int parc, const char
|
||||||
*/
|
*/
|
||||||
sendto_channel_local(ALL_MEMBERS, chptr,
|
sendto_channel_local(ALL_MEMBERS, chptr,
|
||||||
":%s!%s@%s PART %s :requested by %s (%s)",
|
":%s!%s@%s PART %s :requested by %s (%s)",
|
||||||
source_p->name, source_p->username,
|
who->name, who->username,
|
||||||
source_p->host, name, who->name, comment);
|
who->host, name, source_p->name, comment);
|
||||||
|
|
||||||
sendto_server(client_p, chptr, CAP_REMOVE, NOCAPS,
|
sendto_server(client_p, chptr, CAP_REMOVE, NOCAPS,
|
||||||
":%s REMOVE %s %s :%s",
|
":%s REMOVE %s %s :%s",
|
||||||
|
|
Loading…
Reference in a new issue