From: vague666 Date: Sun, 11 Nov 2018 14:21:19 +0000 (+0100) Subject: fix infinite hilight loop X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=63804027487e3b61b47680a945fd60dc4f8b14d7;p=irssi-scripts.irssi.org.git fix infinite hilight loop --- diff --git a/scripts/mass_hilight_blocker.pl b/scripts/mass_hilight_blocker.pl index 99e22fd..98ab6d3 100644 --- a/scripts/mass_hilight_blocker.pl +++ b/scripts/mass_hilight_blocker.pl @@ -49,7 +49,7 @@ sub sig_printtext { if ($num_nicks>=($max_num_nicks)) # all criteria match? { - $window->print($text, MSGLEVEL_PUBLIC); # inform user + $window->print($text, MSGLEVEL_CLIENTCRAP); # inform user $window->print('mass-hilighting in above message ('.$num_nicks.' nicks)',MSGLEVEL_CLIENTCRAP); Irssi::signal_stop(); # don't process any further }