From f6cea494b05d13a07a396be2d59dd2a41675e988 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 14 Apr 2011 18:09:39 -0400 Subject: [PATCH] set standard nick and on-connect channel joins --- config/irc_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/irc_config.py b/config/irc_config.py index 6ff02c8..96e6080 100644 --- a/config/irc_config.py +++ b/config/irc_config.py @@ -10,7 +10,7 @@ HOST = "irc.freenode.net" PORT = 6667 # our nick -NICK = "EarwigBot|2" +NICK = "EarwigBot" # our ident IDENT = "earwigbot" @@ -19,7 +19,7 @@ IDENT = "earwigbot" REALNAME = "[[w:en:User:EarwigBot]]" # channel to join on startup -CHANS = ["##earwigbot"] +CHANS = ["##earwigbot", "##earwig", "#wikipedia-en-afc"] # hostnames of users who can update/restart the bot with !update ADMINS = ["wikipedia/The-Earwig"]