diff options
author | David Phillips <david@sighup.nz> | 2018-05-18 14:11:54 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2018-05-18 14:11:54 +1200 |
commit | b1f4150fc408b00e20117be28ff111a3d3c27fa8 (patch) | |
tree | 8fa5c21f63111e51b4dd6afa5d07940c911776b3 | |
parent | 7ef75e83372ff08223ff1ad31891cb0586abdff3 (diff) | |
download | idalius-b1f4150fc408b00e20117be28ff111a3d3c27fa8.tar.xz |
Correct order of ignore message
-rwxr-xr-x | idalius.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -190,8 +190,8 @@ sub irc_public { if ($module->can("message")) { $output = $module->message(\&log_info, $irc->nick_name, $who, $where, $what, $stripped_what, $irc); } - strike_add($nick, $channel) if $output; $irc->yield(privmsg => $where => $output) if $output; + strike_add($nick, $channel) if $output; } return; |