8
0
mirror of https://github.com/lubuntu-team/lugito.git synced 2025-04-13 20:21:15 +00:00

Only sleep for a fifth of a second, no more.

This commit is contained in:
Simon Quigley 2018-09-29 19:48:33 -05:00
parent a933ae009a
commit 69b8a53462

4
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)