Make clear one can use !commands <module>

This commit is contained in:
moneromooo 2015-01-01 12:16:44 +00:00
parent 83d64251af
commit abb67ef06f

View file

@ -63,7 +63,10 @@ def Commands(nick,chan,cmd):
module_name = GetParam(cmd,1)
SendTo(nick, "Commands for %s:" % config.tipbot_name)
if module_name:
SendTo(nick, "Commands for %s's %s module:" % (config.tipbot_name,module_name))
else:
SendTo(nick, "Commands for %s (!commands <modulename> for command help):" % config.tipbot_name)
msgs = dict()
for command_name in commands: