aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xidalius.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/idalius.pl b/idalius.pl
index 0bf2e5f..3342291 100755
--- a/idalius.pl
+++ b/idalius.pl
@@ -205,8 +205,8 @@ sub handle_common {
my $stripped_what = strip_color(strip_formatting($what));
my $no_prefix_what = $stripped_what;
- if (!should_ignore($nick) && $config{prefix_nick} && $no_prefix_what =~ s/^\Q$current_nick\E[:,]\s+//g ||
- $no_prefix_what =~ s/^$config{prefix}//) {
+ if (!should_ignore($nick) && ($config{prefix_nick} && $no_prefix_what =~ s/^\Q$current_nick\E[:,]\s+//g ||
+ $no_prefix_what =~ s/^$config{prefix}//)) {
$output = run_command($no_prefix_what, $who, $where);
$irc->yield(privmsg => $where => $output) if $output;
strike_add($nick, $channel) if $output;