diff --git a/src/slash_commands/fun/singasong.js b/src/slash_commands/fun/singasong.js index 187fa4aa1..c588f3f12 100644 --- a/src/slash_commands/fun/singasong.js +++ b/src/slash_commands/fun/singasong.js @@ -4,6 +4,13 @@ const { singasongConfig } = require('../_config/fun/singasong'); const { EmbedBuilder } = require('discord.js'); module.exports.run = async ({ main_interaction, bot }) => { + return await main_interaction + .reply({ + content: 'This command is currently disabled!', + ephemeral: true, + }) + .catch((err) => {}); + const singasong = new SingASong(main_interaction, bot); switch (main_interaction.options.getSubcommand()) {