From 8d86380b8e55c2ef7ec9e92e50b0421a7499b7f4 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Tue, 5 Jul 2022 22:10:54 +0700 Subject: [PATCH] Added PlayMy to slash command --- src/utils/DiscordInteraction.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/DiscordInteraction.ts b/src/utils/DiscordInteraction.ts index 14117eb..758b8a8 100644 --- a/src/utils/DiscordInteraction.ts +++ b/src/utils/DiscordInteraction.ts @@ -28,6 +28,7 @@ export const GLOBAL_COMMANDS: Object[] = [ .setName('search') .setDescription('Search for music') .addStringOption((option) => option.setName('query').setDescription('Search query').setRequired(true)), + new SlashCommandBuilder().setName('playmy').setDescription('Play the detected songs you are listening to'), new SlashCommandBuilder().setName('skip').setDescription('Skip the current song'), new SlashCommandBuilder().setName('pause').setDescription('Pause the current music'), new SlashCommandBuilder().setName('resume').setDescription('Resume paused music'),