From 899af5007bba006e72c72280dd24bd7a556e6a71 Mon Sep 17 00:00:00 2001 From: Cristiano Pires Date: Sat, 18 Mar 2023 16:18:09 +0000 Subject: [PATCH] Disabeling music for real --- commands/admin/setFeedId.js | 2 +- server.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/admin/setFeedId.js b/commands/admin/setFeedId.js index 7048aa7..a4874e4 100644 --- a/commands/admin/setFeedId.js +++ b/commands/admin/setFeedId.js @@ -7,7 +7,7 @@ class setYTFeed extends Command{ super(client, { name: 'setFeed', aliases:['setYTFeed','setytf', 'setYTF'], - description: 'Sets the message channel where a defined youtube channel feed will be displayed. (Order: Youtube channel url, discord channel id, Costum message to display when a new video is released) You can only assign one feed per channel.', + description: 'Sets the message channel where a defined youtube channel feed will be displayed. (Order: Youtube channel url, discord channel id, Costum message to display when a new video is released)', needsAdmin:true, }); this.client = client; diff --git a/server.js b/server.js index 4c9f643..a53825f 100644 --- a/server.js +++ b/server.js @@ -136,7 +136,8 @@ async function music() { //console.log('Music: Looking for Servers.') const ServersWithMusicOn = await serversWithMusicOn(bot.guilds.cache); - if(!ServersWithMusicOn) return + const ISGONNABEOFFFORAWHILE = true + if(!ServersWithMusicOn && !ISGONNABEOFFFORAWHILE) return for(var server of ServersWithMusicOn) { if(!Childs[server.name])