CIRCServer.on482 Member

don't have operator perms

Syntax

object.on482(e);

Arguments

ArgumentSummary
e

Returns

Remarks

See Also

Source Code

function serv_482(e)
{
e.channel = new CIRCChannel(this, null, e.params[2]);
e.destObject = e.channel;
e.set = "channel";
/* Some servers (e.g. Hybrid) don't let you get the except list without ops,
* so we might be waiting for this list forever otherwise.
*/
if ("pendingExceptList" in e.channel)
setTimeout(function (){ delete e.channel.pendingExceptList; }, 0);
return true;
}