Skip to content

Commit

Permalink
style: prettier changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mittelblut9 committed Nov 24, 2023
1 parent 11659ba commit 0cbc089
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/slash_commands/fun/singasong.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ 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) => {});
return await main_interaction
.reply({
content: 'This command is currently disabled!',
ephemeral: true,
})
.catch((err) => {});

const singasong = new SingASong(main_interaction, bot);

Expand Down

0 comments on commit 0cbc089

Please sign in to comment.