Skip to content

Commit

Permalink
fix(commands): help の返答メッセージを修正 (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mogyuchi authored Aug 24, 2023
1 parent 945ce23 commit 9670fac
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/commands/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ export class HelpCommand extends Command {

public override async messageRun(message: Message) {
await message.reply({
content: `</help:${this.applicationCommandRegistry.globalCommandId}> をお使いください。(コマンドメンションを押すとチャット欄に自動挿入されます。)`,
content: [
`</help:${this.applicationCommandRegistry.globalCommandId}> をお使いください。(コマンドメンションを押すとチャット欄に自動挿入されます。)`,
'- コマンドが使えない場合、サーバーの設定により使用が制限されているかもしれません。',
].join('\n'),
flags: MessageFlags.SuppressEmbeds,
})
}
Expand Down

0 comments on commit 9670fac

Please sign in to comment.