diff options
author | David Phillips <david@sighup.nz> | 2018-02-19 10:34:39 +1300 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2018-02-19 10:34:39 +1300 |
commit | 3778d3e19229252a2cb8260028bd737b23e27a13 (patch) | |
tree | 8aa35817e75e810043e3009b77370a9cc1288aaf | |
parent | f889ef058db0df946954145bf6a2377e6bba2dda (diff) | |
download | idalius-3778d3e19229252a2cb8260028bd737b23e27a13.tar.xz |
Remove spurious new line
-rwxr-xr-x | idalius.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -98,7 +98,7 @@ sub strike_add { @{$laststrike{$nick}} = splice @{$laststrike{$nick}}, 1, $strike_count - 1; my $first = @{$laststrike{$nick}}[0]; if ($now - $first <= $strike_period) { - log_info "Ignoring $nick because of command flood\n"; + log_info "Ignoring $nick because of command flood"; push @{$config{ignore}}, $nick; } } |