join_channel() can now take a comma-separated list of channels and issue them as one IRC command

This commit is contained in:
Pragmatic Software 2015-07-28 17:47:22 -07:00
parent f6a99818f0
commit 9cf59888c0
1 changed files with 12 additions and 9 deletions

View File

@ -179,10 +179,12 @@ sub mute_user_timed {
}
sub join_channel {
my ($self, $channel) = @_;
my ($self, $channels) = @_;
$self->{pbot}->{conn}->join($channels);
foreach my $channel (split /,/, $channels) {
$self->{pbot}->{event_dispatcher}->dispatch_event('pbot.join', { channel => $channel });
$self->{pbot}->{conn}->join($channel);
delete $self->{is_opped}->{$channel};
delete $self->{op_requested}->{$channel};
@ -192,6 +194,7 @@ sub join_channel {
and $self->{pbot}->{channels}->{channels}->hash->{$channel}{permop}) {
$self->gain_ops($channel);
}
}
}
sub part_channel {