aboutsummaryrefslogtreecommitdiff
path: root/Commands
diff options
context:
space:
mode:
Diffstat (limited to 'Commands')
-rw-r--r--Commands/about.js2
-rw-r--r--Commands/next.js4
-rw-r--r--Commands/previous.js4
3 files changed, 5 insertions, 5 deletions
diff --git a/Commands/about.js b/Commands/about.js
index 23c750e..e027d02 100644
--- a/Commands/about.js
+++ b/Commands/about.js
@@ -40,7 +40,7 @@ export default {
{ name: 'Frameworks', value: `Discord.JS ${version} + Voice` },
{ name: 'License', value: 'GNU General Public License v3.0' }
)
- .setFooter({ text: '© Copyright 2020-2022 Andrew Lee' })
+ .setFooter({ text: '© Copyright 2020-2023 Andrew Lee' })
.setColor('#0066ff');
const srcOrig = new ActionRowBuilder()
diff --git a/Commands/next.js b/Commands/next.js
index 082bf25..f082c89 100644
--- a/Commands/next.js
+++ b/Commands/next.js
@@ -26,9 +26,9 @@ export default {
data: new SlashCommandBuilder()
.setName('next')
.setDescription('Goes to next music')
- /* .addSubcommand(subcommand =>
+ .addSubcommand(subcommand =>
subcommand.setName('vote')
- .setDescription('Voting to skip this audio track')) */
+ .setDescription('Voting to skip this audio track'))
.addSubcommand(subcommand =>
subcommand.setName('force')
.setDescription('Forces skip this audio track')),
diff --git a/Commands/previous.js b/Commands/previous.js
index 5acca47..aa732b2 100644
--- a/Commands/previous.js
+++ b/Commands/previous.js
@@ -26,9 +26,9 @@ export default {
data: new SlashCommandBuilder()
.setName('previous')
.setDescription('Goes to previous music')
- /* .addSubcommand(subcommand =>
+ .addSubcommand(subcommand =>
subcommand.setName('vote')
- .setDescription('Voting to skip this audio track')) */
+ .setDescription('Voting to skip this audio track'))
.addSubcommand(subcommand =>
subcommand.setName('force')
.setDescription('Forces skip this audio track')),