diff --git a/src/client/commands/next.js b/src/client/commands/next.js index a8a2e9d..56747d3 100644 --- a/src/client/commands/next.js +++ b/src/client/commands/next.js @@ -2,7 +2,7 @@ module.exports = { name: 'next', description: 'Next Station', permission: 'none', - category: 'info', + category: 'radio', async execute(interaction, client, command) { if (client.funcs.check(client, interaction, command)) { const radio = client.radio.get(interaction.guild.id); diff --git a/src/client/commands/prev.js b/src/client/commands/prev.js index 148961a..eb7e572 100644 --- a/src/client/commands/prev.js +++ b/src/client/commands/prev.js @@ -2,7 +2,7 @@ module.exports = { name: 'prev', description: 'Previous Station', permission: 'none', - category: 'info', + category: 'radio', async execute(interaction, client, command) { if (client.funcs.check(client, interaction, command)) { const radio = client.radio.get(interaction.guild.id);