From 2c44f03e6b5282057ce03451a4f1b5350a347cda Mon Sep 17 00:00:00 2001 From: Neil Moore Date: Sun, 8 Jul 2012 16:25:54 -0500 Subject: Actually log user quits. Unfortunately, we can't easily track whether they were in the primary channel so this might be a little spammy. --- lib/Crawl/Bot/Plugin/Logging.pm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/Crawl/Bot/Plugin/Logging.pm b/lib/Crawl/Bot/Plugin/Logging.pm index 453b793..1d46d14 100644 --- a/lib/Crawl/Bot/Plugin/Logging.pm +++ b/lib/Crawl/Bot/Plugin/Logging.pm @@ -143,9 +143,7 @@ sub userquit { my $self = shift; my ($args) = @_; - if ($args->{channel} eq $self->bot->{channels}[0]) { - $self->log_message("-!- $args->{who} has quit [$args->{body}]"); - } + $self->log_message("-!- $args->{who} has quit [$args->{body}]"); return; } -- cgit v1.2.3-54-g00ecf