summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2015-06-21 08:18:08 +0200
committerYorhel <git@yorhel.nl>2015-06-21 08:18:08 +0200
commit820f4391416e2bfcb5a218489fe9d722086701e8 (patch)
treeda18b34aee041f690a3c586f849c75b9dcac1678 /lib
parent2cde95a8076306a9d4f27b62121d30f6518f2846 (diff)
Multi::IRC: Increase delay between random quotes
Diffstat (limited to 'lib')
-rw-r--r--lib/Multi/IRC.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Multi/IRC.pm b/lib/Multi/IRC.pm
index 100e4967..b583e090 100644
--- a/lib/Multi/IRC.pm
+++ b/lib/Multi/IRC.pm
@@ -101,7 +101,7 @@ sub send_quote {
sub set_quotew {
my $idx = shift;
- $quotew[$idx] = AE::timer +(4*3600)+rand()*(30*3600), 0, sub {
+ $quotew[$idx] = AE::timer +(8*3600)+rand()*(40*3600), 0, sub {
send_quote($O{channels}[$idx]) if $irc->registered;
set_quotew($idx);
};