mirror of
https://github.com/pragma-/pbot.git
synced 2024-12-25 04:02:37 +01:00
Do not exempt bot-admins lower than level 10 from ignore list
This commit is contained in:
parent
89c1ad7efa
commit
499d91e07d
@ -108,11 +108,14 @@ sub process_line {
|
|||||||
|
|
||||||
if(defined $command || defined $has_url || defined $has_code) {
|
if(defined $command || defined $has_url || defined $has_code) {
|
||||||
if((defined $command && $command !~ /^login/i) || defined $has_url || defined $has_code) {
|
if((defined $command && $command !~ /^login/i) || defined $has_url || defined $has_code) {
|
||||||
if(defined $from && $pbot->{ignorelist}->check_ignore($nick, $user, $host, $from) && not $pbot->{admins}->loggedin($from, "$nick!$user\@$host")) {
|
if(defined $from && $pbot->{ignorelist}->check_ignore($nick, $user, $host, $from)) {
|
||||||
|
my $admin = $pbot->{admins}->loggedin($from, "$nick!$user\@$host");
|
||||||
|
if (!defined $admin || $admin->{level} < 10) {
|
||||||
# ignored hostmask
|
# ignored hostmask
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(defined $has_url) {
|
if(defined $has_url) {
|
||||||
if($pbot->{registry}->get_value('general', 'show_url_titles') and not $pbot->{registry}->get_value($from, 'no_url_titles')
|
if($pbot->{registry}->get_value('general', 'show_url_titles') and not $pbot->{registry}->get_value($from, 'no_url_titles')
|
||||||
|
Loading…
Reference in New Issue
Block a user