diff --git a/modules/info.py b/modules/info.py index dbf2d44..e78a807 100755 --- a/modules/info.py +++ b/modules/info.py @@ -32,12 +32,14 @@ commands.priority = 'low' def help(phenny, input): response = ( - 'Hi, I\'m a bot. Say ".commands" to me in private for a list ' + - 'of my commands, or see http://inamidst.com/phenny/ for more ' + - 'general details. My owner is %s.' - ) % phenny.config.owner - phenny.reply(response) -help.rule = ('$nick', r'(?i)help(?:[?!]+)?$') + "Hey there, I'm the bot for #vtluug. Say \".commands\" to me " + + "in private for a list of my commands or check out my wiki " + + "page at %s. My owner is %s." + ) % (phenny.config.helpurl, phenny.config.owner) + #phenny.reply(response) + phenny.say(response) +#help.rule = ('$nick', r'(?i)help(?:[?!]+)?$') +help.commands = ['help'] help.priority = 'low' def stats(phenny, input):