diff options
Diffstat (limited to 'commands/list.js')
| -rw-r--r-- | commands/list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/list.js b/commands/list.js index 4ec7156..673b779 100644 --- a/commands/list.js +++ b/commands/list.js @@ -29,7 +29,7 @@ export default { .setName('list') .setDescription('Lists the available audio tracks'), async execute(interaction) { - interaction.reply('Listing the available audio tracks...'); + await interaction.reply('Listing the available audio tracks...'); fs.readdirSync(musicFolder).forEach(file => { console.log(file); }); |
