donorboard is broken and not a priority to fix
All checks were successful
Build and Push Docker Image / build (push) Successful in 2m2s

This commit is contained in:
2026-05-12 02:04:17 -04:00
parent 18c4c51da9
commit 4242ec0119

View File

@@ -9,6 +9,10 @@ module.exports = {
option.setName('days') option.setName('days')
.setDescription('Get results for a different amount of time')), .setDescription('Get results for a different amount of time')),
async execute(interaction) { async execute(interaction) {
interaction.reply({ content: "This command is currently broken.", ephemeral: true });
return;
let days let days
if (!interaction.options.getInteger('days')) days = 7; if (!interaction.options.getInteger('days')) days = 7;
else days = interaction.options.getInteger('days'); else days = interaction.options.getInteger('days');
@@ -61,4 +65,4 @@ module.exports = {
} }
interaction.reply(message); interaction.reply(message);
}, },
}; };