From 626cef85162b08c1808d8f88b5b245060ff0dd54 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 10 Jul 2022 01:05:59 -0400 Subject: Added another eslint rule --- commands/list.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'commands/list.js') diff --git a/commands/list.js b/commands/list.js index 9d7a7fd..8f2010b 100644 --- a/commands/list.js +++ b/commands/list.js @@ -28,11 +28,11 @@ export default { data: new SlashCommandBuilder() .setName('list') .setDescription('Lists the available audio tracks'), - async execute (interaction) { + async execute(interaction) { // If someone figures out how to either split the list or make pages when the max character reaches, please do so and make a pull request. const beats = readdirSync(musicFolder).join('\n'); - readdir(musicFolder, async (err, files) => { + readdir(musicFolder, async(err, files) => { await interaction.reply( `Listing ${files.length} audio tracks...\n\`\`\`\n${beats}\n\`\`\`` ); -- cgit v1.2.3