From 59d44640d73f1081a1a0aa28193c240c2571f51e Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 24 Jul 2010 10:51:07 -0500 Subject: [PATCH] set mode -x, i should put this in the config file --- dr.botzo.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dr.botzo.py b/dr.botzo.py index 89c32b8..3e30534 100755 --- a/dr.botzo.py +++ b/dr.botzo.py @@ -8,6 +8,10 @@ import irclib # handler for when the bot has connected to IRC def on_connect(connection, event): + # user modes + # TODO: config file + connection.mode(nick, '-x') + # join the specified channel # TODO: support multiple if irclib.is_channel(channel):