aboutsummaryrefslogtreecommitdiff
path: root/commands/help.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-04-03 16:43:47 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-04-03 16:43:47 -0400
commita555449001cbe87503e5ffe9b311aceb59592c63 (patch)
treebf2920c4532ca65b5837d459e46bbe53c893de76 /commands/help.js
parentdaf3c1735513bb252614a0047116088e242f7984 (diff)
downloadDLAP-a555449001cbe87503e5ffe9b311aceb59592c63.tar.gz
DLAP-a555449001cbe87503e5ffe9b311aceb59592c63.tar.bz2
DLAP-a555449001cbe87503e5ffe9b311aceb59592c63.zip
Audio states on control; Control can be ran once; Ping update, etc
Diffstat (limited to 'commands/help.js')
-rw-r--r--commands/help.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/help.js b/commands/help.js
index 291f5fe..11d9d60 100644
--- a/commands/help.js
+++ b/commands/help.js
@@ -20,7 +20,7 @@
***************************************************************************/
import { SlashCommandBuilder } from '@discordjs/builders'
-import { MessageEmbed } from 'discord.js';
+import { MessageEmbed } from 'discord.js'
import { audio } from '../AudioBackend.js'
export default {
@@ -33,7 +33,7 @@ export default {
.setDescription(`Currently playing \`${audio}\``)
.addField('Public Commands', `/help\n/ping\n/about\n`, true)
.addField('Bot Owner Only', `/join\n/control\n/stop\n`, true)
- .setFooter({text:'© Copyright 2020-2022 Andrew Lee. Licensed with GPL-3.0.'})
+ .setFooter({text:'© Copyright 2020-2022 Andrew Lee'})
.setColor('#0066ff')
return await interaction.reply({ embeds: [helpEmbed]});