From 4242ec0119c70d2e4694a6ece735de85262c00d6 Mon Sep 17 00:00:00 2001 From: Kira Date: Tue, 12 May 2026 02:04:17 -0400 Subject: [PATCH] donorboard is broken and not a priority to fix --- commands/utility/donorboard.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 +};