diff --git a/commands/utility/donorboard.js b/commands/utility/donorboard.js index 6aedd3d..35c865e 100644 --- a/commands/utility/donorboard.js +++ b/commands/utility/donorboard.js @@ -9,6 +9,10 @@ module.exports = { option.setName('days') .setDescription('Get results for a different amount of time')), async execute(interaction) { + + interaction.reply({ content: "This command is currently broken.", ephemeral: true }); + return; + let days if (!interaction.options.getInteger('days')) days = 7; else days = interaction.options.getInteger('days'); @@ -61,4 +65,4 @@ module.exports = { } interaction.reply(message); }, -}; \ No newline at end of file +};