From 01da2955ba362f5c50f5e7c8bfbc0e97b732b272 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 13 Jan 2010 20:35:46 +0000 Subject: [PATCH] Reduce wait times to something more resembling a real pirate --- yoweb-scrape | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/yoweb-scrape b/yoweb-scrape index 31c75ae..3d9e857 100755 --- a/yoweb-scrape +++ b/yoweb-scrape @@ -43,6 +43,7 @@ import re as regexp import random import curses import termios +import random from optparse import OptionParser from StringIO import StringIO @@ -142,7 +143,7 @@ class Fetcher: min_age = 1 need_wait = 0 for age in ages: - if age < min_age and age < 300: + if age < min_age and age <= 5: debug('Fetcher morewait min=%d age=%d' % (min_age, age)) need_wait = max(need_wait, min_age - age) @@ -476,7 +477,7 @@ class PirateAboard: return pa.pi debug('PirateAboard refresh %d > %d %s' % ( age, guide, pa.name)) - imaginary = [2,6] + imaginary = [2,4] else: imaginary = [1] wait = fetcher.need_wait(now, imaginary) -- 2.30.2