From 55a38cb21108fed26a0d73c7adab8222f11a9f59 Mon Sep 17 00:00:00 2001 From: Daniel DiPaolo Date: Mon, 2 Aug 2004 17:00:40 +0000 Subject: [PATCH] Fixed lingerinb bug from when random quotegrabs stuff was converted to config vars --- plugins/QuoteGrabs.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/QuoteGrabs.py b/plugins/QuoteGrabs.py index c3b156cc9..8ab980055 100644 --- a/plugins/QuoteGrabs.py +++ b/plugins/QuoteGrabs.py @@ -114,6 +114,9 @@ class QuoteGrabs(plugins.ChannelDBHandler, callbacks.Privmsg): channel) length = self.registryValue('randomGrabber.minimumCharacters', channel) + grabTime = \ + self.registryValue('randomGrabber.averageTimeBetweenGrabs', + channel) if self.registryValue('randomGrabber', channel): if len(payload) > length and len(payload.split()) > words: db = self.getDb(channel)