summaryrefslogtreecommitdiff
path: root/megahal_bot.py
diff options
context:
space:
mode:
Diffstat (limited to 'megahal_bot.py')
-rw-r--r--megahal_bot.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/megahal_bot.py b/megahal_bot.py
index c5a0f64..f1f3864 100644
--- a/megahal_bot.py
+++ b/megahal_bot.py
@@ -41,6 +41,7 @@ class MegahalBot(OmegleChat):
if self.idlecount > 8:
self.logger.info("Idle > 8. disconnect()")
self.disconnect()
+ self.disconnect_event.set()
else:
self.logger.info("Idle count %s/8" % self.idlecount)
self.respond("hey?") #restart the conv.
@@ -61,7 +62,7 @@ class MegahalBot(OmegleChat):
except:
self.disconnect_event.set()
return
- time.sleep(random.randint(1,3))
+ time.sleep(random.randint(2,5))
self.respond(message,prepend="\033[1A\033[2K\033[%sD"%(len(typestr))) #move up 1; delete line; move left %s
def on_connect(self):