From b19da63151e2ff8e5a60f1b350f4a6b8699151fc Mon Sep 17 00:00:00 2001 From: Shauna Date: Sat, 18 Oct 2014 00:55:12 -0400 Subject: [PATCH] Reset to defaults --- bot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bot.py b/bot.py index 4b972f1..d4eb443 100644 --- a/bot.py +++ b/bot.py @@ -6,9 +6,9 @@ from threading import Thread # Some basic variables used to configure the bot. server = "irc.freenode.net" -channel = "#openhatch-bots" # Please use #openhatch-bots rather than #openhatch for testing +channel = "#openhatch" # Please use #openhatch-bots rather than #openhatch for testing botnick = "WelcomeBot" -channel_greeters = ['shauna'] #, 'paulproteus', 'marktraceur'] +channel_greeters = ['shauna', 'paulproteus', 'marktraceur'] hello_list = [r'hello', r'hi', r'hey', r'yo', r'sup'] help_list = [r'help', r'info', r'faq', r'explain yourself'] @@ -20,7 +20,7 @@ help_list = [r'help', r'info', r'faq', r'explain yourself'] # Defines a bot class Bot(object): - def __init__(self, nick_source='nicks.csv', wait_time=5): + def __init__(self, nick_source='nicks.csv', wait_time=60): self.nick_source = nick_source self.wait_time = wait_time self.known_nicks = []