From 387bef36770f85fed5fa9625adc24806b4cd216a Mon Sep 17 00:00:00 2001 From: Wizzard Date: Sat, 17 Aug 2024 15:24:09 -0400 Subject: [PATCH] Edit descriptions --- commands/clear.js | 2 +- commands/help.js | 2 +- commands/queue.js | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/clear.js b/commands/clear.js index da3545e..063abab 100644 --- a/commands/clear.js +++ b/commands/clear.js @@ -2,7 +2,7 @@ const { clearQueue, getQueue } = require('../utils/queueManager'); module.exports = { name: 'clear', - description: 'Clears the entire queue, except for the currently playing song.', + description: 'Clears the entire queue, except for the currently playing song', execute(message) { const guildId = message.guild.id; const queue = getQueue(guildId); diff --git a/commands/help.js b/commands/help.js index 9831c29..120181a 100644 --- a/commands/help.js +++ b/commands/help.js @@ -2,7 +2,7 @@ const { EmbedBuilder } = require('discord.js'); module.exports = { name: 'help', - description: 'List all commands or get details about a specific command.', + description: 'List all commands or get details about a specific command', execute(message, args) { const { commands } = message.client; const commandsArray = Array.from(commands.values()); diff --git a/commands/queue.js b/commands/queue.js index ac786ef..29c02ec 100644 --- a/commands/queue.js +++ b/commands/queue.js @@ -3,6 +3,7 @@ const { EmbedBuilder } = require('discord.js'); module.exports = { name: 'queue', + description: 'Show the current songs in queue', execute(message) { const queue = getQueue(message.guild.id); const currentTrack = getCurrentTrack(message.guild.id);