mirror of
https://github.com/Nick80835/microbot
synced 2025-08-31 22:46:01 +00:00
add event.prefix
This commit is contained in:
@@ -34,15 +34,14 @@ async def help_cmd(event):
|
||||
await event.reply(f"**{command.pattern}** doesn't have a help string.")
|
||||
return
|
||||
|
||||
prefix = ldr.prefix()
|
||||
help_dict = {}
|
||||
|
||||
for command in ldr.command_handler.incoming_commands:
|
||||
if not command.hide_help:
|
||||
if command.module in help_dict:
|
||||
help_dict[command.module].append(prefix + command.pattern)
|
||||
help_dict[command.module].append(event.prefix + command.pattern)
|
||||
else:
|
||||
help_dict[command.module] = [prefix + command.pattern]
|
||||
help_dict[command.module] = [event.prefix + command.pattern]
|
||||
|
||||
help_string = "\n".join([f"**{module}**: {', '.join(pattern_list)}" for module, pattern_list in help_dict.items()])
|
||||
|
||||
|
Reference in New Issue
Block a user