From: Michael Andreen Date: Fri, 16 Aug 2019 17:22:27 +0000 (+0200) Subject: Move stat tick output to command channel X-Git-Url: https://ruin.nu/git/?p=NDIRC.git;a=commitdiff_plain;h=1e1f7cb4c3ae7c515d3541c5fd22ae0e2817e34b Move stat tick output to command channel --- diff --git a/Delling.pm b/Delling.pm index 41d8725..545df2f 100644 --- a/Delling.pm +++ b/Delling.pm @@ -175,7 +175,7 @@ sub refresh { } if (defined $row[1] && $stattick != $row[1]){ $stattick = $row[1]; - $self->toTarget(members => "New tick: $stattick"); + $self->toTarget(spam => "New tick: $stattick"); } my $ircreqs = $dbh->prepare(q{SELECT id,username,message,channel FROM irc_requests NATURAL JOIN users WHERE not sent}); my $upircreq = $dbh->prepare(q{UPDATE irc_requests SET sent = TRUE WHERE id = ?});