Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
fix(help): make cmds mentionable
Browse files Browse the repository at this point in the history
  • Loading branch information
Qreepex committed Jan 2, 2023
1 parent c963d6b commit b80b7fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ All notable changes to this project will be documented in this file. See [standa

### [1.2.10](https://github.com/EazyAutodelete/misc-commands/compare/v1.2.9...v1.2.10) (2023-01-02)


### Bug Fixes

* **info:** fix some links ([8f13403](https://github.com/EazyAutodelete/misc-commands/commit/8f13403deb334c57bc7bc2361547488c69aab2e0))
- **info:** fix some links ([8f13403](https://github.com/EazyAutodelete/misc-commands/commit/8f13403deb334c57bc7bc2361547488c69aab2e0))

### [1.2.9](https://github.com/EazyAutodelete/misc-commands/compare/v1.2.8...v1.2.9) (2022-12-18)

Expand Down
2 changes: 1 addition & 1 deletion src/commands/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class HelpCommand extends Command {
"\n\n" +
this.bot.commands
.filter((c: Command) => c.permissionLevel != "botMod" && c.permissionLevel != "botAdmin")
.map((x: Command) => `**/${x.name}**:\n\\↪ ${x.description}`)
.map(async (x: Command) => `</${x.name}:${(await this.client.getCommands()).find(y => y.name === x.name)}>:\n\\↪ ${x.description}`)
.join("\n\n"),
title: "**EazyAutodelete:** Help",
},
Expand Down

0 comments on commit b80b7fe

Please sign in to comment.