Increase wait before attempting to join channels

This commit is contained in:
Juhani Krekelä 2019-05-06 14:35:10 +03:00
parent 344f5314ca
commit 61a2fdd095
1 changed files with 1 additions and 1 deletions

View File

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