mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
Make clear one can use !commands <module>
This commit is contained in:
parent
83d64251af
commit
abb67ef06f
1 changed files with 4 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue