First part of charybdis changeset 1393:da0c7fdb7ee1
This commit is contained in:
parent
c95fc52d5a
commit
e610316019
|
@ -232,6 +232,9 @@ ms_join(struct Client *client_p, struct Client *source_p, int parc, const char *
|
||||||
source_p->servptr->name,
|
source_p->servptr->name,
|
||||||
chptr->chname, modebuf, parabuf);
|
chptr->chname, modebuf, parabuf);
|
||||||
*omodebuf = *modebuf = *parabuf = '\0';
|
*omodebuf = *modebuf = *parabuf = '\0';
|
||||||
|
|
||||||
|
/* since we're dropping our modes, we want to clear the mlock as well. --nenolod */
|
||||||
|
set_channel_mlock(client_p, source_p, chptr, NULL, FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!IsMember(source_p, chptr))
|
if(!IsMember(source_p, chptr))
|
||||||
|
@ -493,6 +496,9 @@ ms_sjoin(struct Client *client_p, struct Client *source_p, int parc, const char
|
||||||
/* Update capitalization in channel name, this makes the
|
/* Update capitalization in channel name, this makes the
|
||||||
* capitalization timestamped like modes are -- jilles */
|
* capitalization timestamped like modes are -- jilles */
|
||||||
strcpy(chptr->chname, parv[2]);
|
strcpy(chptr->chname, parv[2]);
|
||||||
|
|
||||||
|
/* since we're dropping our modes, we want to clear the mlock as well. --nenolod */
|
||||||
|
set_channel_mlock(client_p, source_p, chptr, NULL, FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(*modebuf != '\0')
|
if(*modebuf != '\0')
|
||||||
|
|
Loading…
Reference in New Issue