From d7e4cf29e6fc6b8f4ba07e837dcf56b3f5d63afc Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sat, 9 Jul 2022 22:14:38 -0400 Subject: ESLint --- commands/join.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'commands/join.js') diff --git a/commands/join.js b/commands/join.js index 42f3e1c..b309f97 100644 --- a/commands/join.js +++ b/commands/join.js @@ -19,17 +19,17 @@ * ***************************************************************************/ -import { SlashCommandBuilder } from '@discordjs/builders' -import { voiceInit } from '../AudioBackend.js' -import { PermissionFlagsBits } from 'discord-api-types/v10' +import { SlashCommandBuilder } from '@discordjs/builders'; +import { voiceInit } from '../AudioBackend.js'; +import { PermissionFlagsBits } from 'discord-api-types/v10'; export default { - data: new SlashCommandBuilder() - .setName('join') - .setDescription('Joins voice chat') - .setDefaultMemberPermissions(PermissionFlagsBits.Administrator), - async execute(interaction, bot) { - await interaction.reply({ content: 'Joining voice channel', ephemeral: true }) - return await voiceInit(bot); - }, -}; \ No newline at end of file + data: new SlashCommandBuilder() + .setName('join') + .setDescription('Joins voice chat') + .setDefaultMemberPermissions(PermissionFlagsBits.Administrator), + async execute (interaction, bot) { + await interaction.reply({ content: 'Joining voice channel', ephemeral: true }); + return await voiceInit(bot); + } +}; -- cgit v1.2.3