Skip to content

Commit

Permalink
fix: disable singasong feature (#1793)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mittelblut9 authored Nov 24, 2023
2 parents 08dc07a + 0cbc089 commit 8a0975d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/slash_commands/fun/singasong.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down

0 comments on commit 8a0975d

Please sign in to comment.