Skip to content

Commit

Permalink
Remove ephemeral, it doesn't work there
Browse files Browse the repository at this point in the history
  • Loading branch information
alephtwo committed May 25, 2024
1 parent 973c1e0 commit 99f3629
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/command/commands/HelpCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,7 @@ export default class HelpCommand implements Command {
.sort((a: string, b: string) => a.localeCompare(b))
.map((c) => `\`!${c}\``);

void this.#msg
.reply({
content: unorderedList(help),
options: { ephemeral: true },
})
.catch();
void this.#msg.author.send(unorderedList(help)).catch();
return Promise.resolve();
}
}

0 comments on commit 99f3629

Please sign in to comment.