mirror of
https://github.com/pragma-/pbot.git
synced 2024-12-24 19:52:34 +01:00
Plugins/RestrictedMod: !mod command is now opt-in per-channel
This commit is contained in:
parent
8e7bdafa29
commit
6d8aa0ef91
@ -77,7 +77,10 @@ sub generic_command {
|
||||
}
|
||||
}
|
||||
|
||||
return "I do not have OPs for this channel. I cannot do any moderation here." if not $self->{pbot}->{chanops}->can_gain_ops($channel);
|
||||
return "I do not have OPs for this channel. I cannot do any moderation here."
|
||||
if not $self->{pbot}->{chanops}->can_gain_ops($channel);
|
||||
return "Voiced channel moderation is not enabled for this channel. Use `regset $channel.restrictedmod 1` to enable."
|
||||
if not $self->{pbot}->{registry}->get_value($channel, 'restrictedmod');
|
||||
my $hostmask = "$stuff->{nick}!$stuff->{user}\@$stuff->{host}";
|
||||
my $admin = $self->{pbot}->{users}->loggedin_admin($channel, $hostmask);
|
||||
my $voiced = $self->{pbot}->{nicklist}->get_meta($channel, $stuff->{nick}, '+v');
|
||||
|
Loading…
Reference in New Issue
Block a user