We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 410833f commit 4fb911aCopy full SHA for 4fb911a
index.js
@@ -162,7 +162,7 @@ async function execute(name, interaction) {
162
musicPlayer.toggleSpeech(interaction);
163
break;
164
case "lyrics":
165
- //interaction.reply({ content: "This function is currently disabled :/", ephemeral: true });
+ if (config.disableLyrics) {interaction.reply({ content: "This function is currently disabled :/", ephemeral: true });return;}
166
musicPlayer.lyrics(interaction);
167
168
default:
update.sh
@@ -5,3 +5,4 @@ git pull origin $branch
5
npm install
6
cp update-backup-config.json ./config.json
7
node command-deployer.js
8
+unlink update-backup-config.json
0 commit comments