summaryrefslogtreecommitdiffstats
path: root/lib/Crawl/Bot.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Crawl/Bot.pm')
-rw-r--r--lib/Crawl/Bot.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Crawl/Bot.pm b/lib/Crawl/Bot.pm
index 0ddf57e..f6bf7b9 100644
--- a/lib/Crawl/Bot.pm
+++ b/lib/Crawl/Bot.pm
@@ -61,7 +61,10 @@ before say => sub {
sub tick {
my $self = shift;
warn "Checking for updates...";
- $_->tick for @{ $self->plugins };
+ for (@{ $self->plugins }) {
+ warn "...$_";
+ $_->tick
+ }
warn "Done";
return $self->update_time;
}