Don't double up command prefix in !usage
output (commands.py)
This commit is contained in:
parent
f97c1f02fd
commit
7937be5128
1 changed files with 1 additions and 2 deletions
|
@ -322,9 +322,8 @@ class Module(ModuleManager.BaseModule):
|
||||||
command = event["args_split"][0].lower()
|
command = event["args_split"][0].lower()
|
||||||
if command in self.events.on("received").on(
|
if command in self.events.on("received").on(
|
||||||
"command").get_children():
|
"command").get_children():
|
||||||
command_str = "%s%s" % (command_prefix, command)
|
|
||||||
hooks = self.events.on("received.command").on(command).get_hooks()
|
hooks = self.events.on("received.command").on(command).get_hooks()
|
||||||
usage = self._get_usage(hooks[0], command_str, command_prefix)
|
usage = self._get_usage(hooks[0], command, command_prefix)
|
||||||
|
|
||||||
if usage:
|
if usage:
|
||||||
event["stdout"].write("Usage: %s" % usage)
|
event["stdout"].write("Usage: %s" % usage)
|
||||||
|
|
Loading…
Reference in a new issue