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

Commit

Permalink
owo
Browse files Browse the repository at this point in the history
  • Loading branch information
ringo360 committed Mar 14, 2024
1 parent 5a5326e commit 619dd43
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions packages/admin/commands/globalban.js
Original file line number Diff line number Diff line change
Expand Up @@ -360,15 +360,20 @@ module.exports = {
const modal = new ModalBuilder()
.setCustomId('gbanReport')
.setTitle('レポートしたいユーザーの情報')
.setStyle(TextInputStyle.Short);

const targetid = new TextInputBuilder()
.setCustomId('reportuserid')
.setLabel('通報したいユーザーのID');
.setLabel('通報したいユーザーのID')
.setStyle(TextInputStyle.Short)
.setMinLength(17)
.setMaxLength(18)
.setValue('開発者ツールを使用して、ユーザーidを入手してください!')

const reason = new TextInputBuilder()
.setCustomId('reason')
.setTitle('通報理由');
.setTitle('通報理由')
.setStyle(TextInputStyle.Paragraph)
.setValue('グローバルBANするべきである理由を記入してください。')
} else {
return await interaction.editReply(
LANG.commands.globalban.unsupportedSubcommandError,
Expand Down

0 comments on commit 619dd43

Please sign in to comment.