summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2016-09-11 19:29:03 +0200
committerYorhel <git@yorhel.nl>2016-09-11 19:29:03 +0200
commit8561b6cb5ace9abe6cb1a43f4d3039d5882c4808 (patch)
tree593915a3091f2f963bc84ac3dda542474fc046ee /lib
parentbd0c0dedb28ef8f38069c6077acf47fdd117f25e (diff)
Fix http->https in d14 + increase IRC quote spam interval
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 d9101362..3da7e31b 100644
--- a/lib/Multi/IRC.pm
+++ b/lib/Multi/IRC.pm
@@ -117,7 +117,7 @@ sub send_quote {
sub set_quotew {
my $idx = shift;
- $quotew[$idx] = AE::timer +(8*3600)+rand()*(40*3600), 0, sub {
+ $quotew[$idx] = AE::timer +(18*3600)+rand()*(72*3600), 0, sub {
send_quote($O{channels}[$idx]) if $irc->registered;
set_quotew($idx);
};