IrcClient.addChannelModes

Add or remove channel modes in the given channel.

class IrcClient
void
addChannelModes

Examples

Give channel operator status (+o) to Alice and voice status (+v) to Bob in channel #foo:

client.addChannelModes("#foo", ChannelMode('o', "Alice"), ChannelMode('v', "Bob"));

Meta