removed default action

This commit is contained in:
Luke Rogers 2012-03-23 07:36:00 +13:00
parent 2c71c75e66
commit d74a57d387

View file

@ -39,14 +39,11 @@ def listmuted(inp, bot=None):
return "Muted users/channels are: " + ", ".join(muted)
@hook.command(autohelp=False, adminonly=True)
@hook.command(adminonly=True)
def mute(inp, input=None, db=None):
".mute <channel/user> -- Makes the bot ignore <channel/user>."
"If no channel is specified, it is muted in the current channel."
if inp:
target = inp
else:
target = input.chan
target = inp
if is_muted(target):
input.notice("%s is already muted." % target)
@ -55,15 +52,12 @@ def mute(inp, input=None, db=None):
input.notice("%s has been muted." % target)
@hook.command(autohelp=False, adminonly=True)
@hook.command(adminonly=True)
def unmute(inp, input=None, db=None):
".unmute <channel/user> -- Makes the bot listen to <channel/user>."
"If no channel is specified, it is unmuted in the current channel."
if inp:
target = inp
else:
target = input.chan
target = inp
if is_muted(target):
unmute_target(target)
input.notice("%s has been unmuted." % target)