From e258d5a64d837681fbb870943c8a191d7ffd626c Mon Sep 17 00:00:00 2001 From: David Phillips Date: Fri, 14 Jul 2017 19:21:07 +1200 Subject: Strip formatting in idalius.pl once instead of each module --- idalius.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'idalius.pl') diff --git a/idalius.pl b/idalius.pl index 8f9f81b..ef157ec 100755 --- a/idalius.pl +++ b/idalius.pl @@ -8,6 +8,7 @@ use POE::Kernel; use POE::Component::IRC; use POE::Component::IRC::Plugin::NickServID; use config_file; +use IRC::Utils qw(strip_color strip_formatting); use Module::Pluggable search_path => "plugin", instantiate => 'configure'; my $config_file = "bot.conf"; @@ -116,7 +117,8 @@ sub irc_public { return if (grep {$_ eq $nick} @{$config{ignore}}); for my $module (@plugin_list) { - my $output = $module->message($irc->nick_name, $who, $where, $what); + my $stripped_what = strip_color(strip_formatting($what)); + my $output = $module->message($irc->nick_name, $who, $where, $what, $stripped_what); $irc->yield(privmsg => $where => $output) if $output; } -- cgit v1.1