From 619dd4375031666944b5a6c28c28590e5fd0f8a4 Mon Sep 17 00:00:00 2001 From: ringoXD Date: Thu, 14 Mar 2024 16:04:59 +0900 Subject: [PATCH] owo --- packages/admin/commands/globalban.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/packages/admin/commands/globalban.js b/packages/admin/commands/globalban.js index 4edc4671..5ec57b58 100755 --- a/packages/admin/commands/globalban.js +++ b/packages/admin/commands/globalban.js @@ -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,