From 69b8a5346295666b759719a36074b284cf63eeb0 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sat, 29 Sep 2018 19:48:33 -0500 Subject: [PATCH] Only sleep for a fifth of a second, no more. --- lugito | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lugito b/lugito index f51c2cc..c279743 100755 --- a/lugito +++ b/lugito @@ -101,8 +101,8 @@ def ircmessage(objectstr, who, body, link): message = message + "\x032" + link + "\x03" # Make sure we can debug this if it goes haywire logger.debug(message) - # Sleep for a second, so when we have a bunch of messages we have a buffer - sleep(1) + # Sleep for a fifth of a second, so when we have a bunch of messages we have a buffer + sleep(0.2) # Aaaaand, send it off! sendnotice(message)