aboutsummaryrefslogtreecommitdiff
path: root/commands/reshuffle.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-07-08 12:09:06 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-07-08 12:09:06 -0400
commit2471564098b1de1a635d90f381ef67cf2cb43511 (patch)
treec0e92769059e51187f8645f2b43bf26a8cef8a71 /commands/reshuffle.js
parent83e4c8679c656ecb352ddc34d5dced9518ba240a (diff)
downloadDLAP-2471564098b1de1a635d90f381ef67cf2cb43511.tar.gz
DLAP-2471564098b1de1a635d90f381ef67cf2cb43511.tar.bz2
DLAP-2471564098b1de1a635d90f381ef67cf2cb43511.zip
New command; Some tweaks
Diffstat (limited to 'commands/reshuffle.js')
-rw-r--r--commands/reshuffle.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/commands/reshuffle.js b/commands/reshuffle.js
new file mode 100644
index 0000000..5312d68
--- /dev/null
+++ b/commands/reshuffle.js
@@ -0,0 +1,37 @@
+/**************************************************************************
+ *
+ * DLAP Bot: A Discord bot that plays local audio tracks.
+ * (C) Copyright 2022
+ * Programmed by Andrew Lee
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *
+ ***************************************************************************/
+
+import { SlashCommandBuilder } from '@discordjs/builders'
+import { player, shufflePlaylist } from "../AudioBackend.js"
+import { PermissionFlagsBits } from "discord-api-types/v10"
+
+export default {
+ data: new SlashCommandBuilder()
+ .setName('reshuffle')
+ .setDescription('Reshuffles the playlist')
+ .setDefaultMemberPermissions(PermissionFlagsBits.Administrator),
+ async execute(interaction) {
+ // Command not fully functional yet
+ await interaction.reply({content:`Reshuffling the playlist...`, ephemeral:true});
+ player.stop();
+ return await shufflePlaylist();
+ },
+}; \ No newline at end of file