fix help messages
This commit is contained in:
parent
f5d09dc35e
commit
cb33198bfb
1 changed files with 3 additions and 3 deletions
|
@ -40,11 +40,11 @@ def mutesieve(bot, input, func, type, args):
|
||||||
|
|
||||||
@hook.command(autohelp=False)
|
@hook.command(autohelp=False)
|
||||||
def listmuted(inp, bot=None):
|
def listmuted(inp, bot=None):
|
||||||
".listmuted -- Lists muted users/channels."
|
".listmuted -- Lists muted channels/users."
|
||||||
if muted:
|
if muted:
|
||||||
return "Muted users/channels are: " + ", ".join(muted)
|
return "Muted channels/users are: " + ", ".join(muted)
|
||||||
else:
|
else:
|
||||||
return "No users are currently muted."
|
return "No channels/users are currently muted."
|
||||||
|
|
||||||
|
|
||||||
@hook.command(adminonly=True)
|
@hook.command(adminonly=True)
|
||||||
|
|
Reference in a new issue