diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-03-26 23:44:05 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-05-04 22:19:10 -0400 |
| commit | 8c81aadddea65eef415f5b84986db21eff1fb20f (patch) | |
| tree | 3e7cde1a4f9cc0e342dd1e9bcdfdc189c3645e28 /Commands | |
| parent | b29ab06623fd24cfc2a611bdd658b4d2ef934335 (diff) | |
| download | DLAP-8c81aadddea65eef415f5b84986db21eff1fb20f.tar.gz DLAP-8c81aadddea65eef415f5b84986db21eff1fb20f.tar.bz2 DLAP-8c81aadddea65eef415f5b84986db21eff1fb20f.zip | |
2023 update; Started to work on i18n; Readded voting
Diffstat (limited to 'Commands')
| -rw-r--r-- | Commands/about.js | 2 | ||||
| -rw-r--r-- | Commands/next.js | 4 | ||||
| -rw-r--r-- | Commands/previous.js | 4 |
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')), |
