From bd1d07a387f28cc268266353db964ca8baf96e6d Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Tue, 22 Jun 2021 22:00:29 +0530 Subject: Removes Restriction to execute commands --- src/commands/radioStart.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/commands') diff --git a/src/commands/radioStart.js b/src/commands/radioStart.js index 0f0b5f7..799a369 100644 --- a/src/commands/radioStart.js +++ b/src/commands/radioStart.js @@ -3,7 +3,7 @@ const axios = require('axios').default; const instance = axios.create({ baseURL: 'http://retrowave.ru/api/v1' }); - +require('dotenv').config(); const resourceUrl = 'http://retrowave.ru' async function broadcastRadio(client, args, message, voiceChannel, textChannel) { @@ -39,6 +39,7 @@ async function getNextMusic() { module.exports = { async execute(client, message, args) { + if(message.author.id !== process.env.ADMIN_ID) return; const { RADIO_CHANNEL, NOW_PLAYING_CHANNEL } = process.env; if (!RADIO_CHANNEL) return message.reply(`Please add RADIO_CHANNEL to .env with a Voice Channel ID`); if (!NOW_PLAYING_CHANNEL) return message.reply(`Please add NOW_PLAYING_CHANNEL to .env with a Text Channel ID`); -- cgit v1.2.3