From 7a0a3e0d50d933782ebae5be077de92c15610c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Sun, 5 Sep 2021 06:26:34 +0300 Subject: [PATCH] Updated category in next and prev command --- src/client/commands/next.js | 2 +- src/client/commands/prev.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);