From 37370872552e3291f732e73be1d79c2a197c4ecc Mon Sep 17 00:00:00 2001 From: Frostbide <129122542+Frostbide@users.noreply.github.com> Date: Thu, 26 Jun 2025 13:10:32 -0700 Subject: [PATCH] Fix description length on bulkdelete --- src/commands/slash/bulkdelete.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/commands/slash/bulkdelete.js b/src/commands/slash/bulkdelete.js index ac378f8..34a3e41 100644 --- a/src/commands/slash/bulkdelete.js +++ b/src/commands/slash/bulkdelete.js @@ -3,9 +3,7 @@ const { ApplicationIntegrationType } = require('discord-api-types/v10'); module.exports = { data: new SlashCommandBuilder() .setName('bulkdelete') - .setDescription( - 'Delete a certain amount of messages from the channel the command was used in (Only if you have permission to)' - ) + .setDescription('Delete messages in bulk (Only if you have permission to)') .addIntegerOption((option) => option .setName('amount')