CIRCServer.on368 Member

channel ban list end

Syntax

object.on368(e);

Arguments

ArgumentSummary
e

Returns

Remarks

See Also

Source Code

function serv_368(e)
{
e.channel = new CIRCChannel(this, null, e.params[2]);
e.destObject = e.channel;
e.set = "channel";
/* This flag is cleared in a timeout (which occurs right after the current
* message has been processed) so that the new event target (the channel)
* will still have the flag set when it executes.
*/
if ("pendingBanList" in e.channel)
setTimeout(function() { delete e.channel.pendingBanList; }, 0);
return true;
}