From 61a2fdd0954c9971d2a4eee14bcad049feea6194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Mon, 6 May 2019 14:35:10 +0300 Subject: [PATCH] Increase wait before attempting to join channels --- botcmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/botcmd.py b/botcmd.py index 3a4d0cb..f88eabe 100644 --- a/botcmd.py +++ b/botcmd.py @@ -287,7 +287,7 @@ def on_connect(*, irc): global nickserv_pass irc.msg(b'nickserv', b'IDENTIFY ' + nickserv_pass.encode()) - time.sleep(20) # One day I will do this correctly. Today is not the day + time.sleep(30) # One day I will do this correctly. Today is not the day stop_gameloop() start_gameloop(irc)