From dbfb8a6add13ac39fd6f45abc31ab9e96ba49962 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Thu, 23 Jul 2015 17:47:16 -0700 Subject: [PATCH] Remove unnecessary printing of ignored messages --- PBot/Interpreter.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/PBot/Interpreter.pm b/PBot/Interpreter.pm index 73da7a38..fa468911 100644 --- a/PBot/Interpreter.pm +++ b/PBot/Interpreter.pm @@ -110,7 +110,6 @@ sub process_line { 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")) { # ignored hostmask - $pbot->{logger}->log("ignored message: $from <$nick!$user\@$host> $text\n"); return; } }