3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

Added missing newline to flood reset message

This commit is contained in:
Pragmatic Software 2010-05-28 05:20:06 +00:00
parent 4e53210445
commit 0b3aa9015b

View File

@ -155,7 +155,7 @@ sub check_ignore {
$self->{last_timestamp}->{$channel} = $now; $self->{last_timestamp}->{$channel} = $now;
if($self->{ignore_flood_counter}->{$channel} > 0) { if($self->{ignore_flood_counter}->{$channel} > 0) {
$self->{ignore_flood_counter}->{$channel} = 0; $self->{ignore_flood_counter}->{$channel} = 0;
$pbot->logger->log("flood_msg reset"); $pbot->logger->log("flood_msg reset\n");
} }
} }