From 6198b30d76a6e7ce3ba3037f454221cbbc4b0b32 Mon Sep 17 00:00:00 2001 From: "Sean B. Palmer" Date: Thu, 16 Feb 2012 17:55:23 +0000 Subject: Throttle channel joins --- modules/startup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'modules/startup.py') diff --git a/modules/startup.py b/modules/startup.py index 48c5fc9..297dfb5 100755 --- a/modules/startup.py +++ b/modules/startup.py @@ -53,16 +53,19 @@ def setup(phenny): phenny.handle_connect = outer_handle_connect def startup(phenny, input): + import time + if hasattr(phenny.config, 'serverpass'): phenny.write(('PASS', phenny.config.serverpass)) if hasattr(phenny.config, 'password'): phenny.msg('NickServ', 'IDENTIFY %s' % phenny.config.password) - __import__('time').sleep(5) + time.sleep(5) # Cf. http://swhack.com/logs/2005-12-05#T19-32-36 for channel in phenny.channels: phenny.write(('JOIN', channel)) + time.sleep(0.5) startup.rule = r'(.*)' startup.event = '251' startup.priority = 'low' -- cgit v1.2.3-1-g7c22