discord_bot/commands/admin/reload.js
SileNce5k cc149768c1
All checks were successful
CI / CI (push) Successful in 16s
Remove the rest of netmodule references
2024-11-01 19:59:27 +01:00

15 lines
No EOL
408 B
JavaScript

const calculateReloaded = require("../../util/calculateReloaded.js");
module.exports = {
name: 'reload',
description: 'Reloads modules.',
admin: true,
execute({message, client}) {
let reloadCommands = require("../../util/reloadCommands.js")
let beforeSize = client.commands.size;
reloadCommands(client)
let sendText = calculateReloaded(beforeSize, client)
message.channel.send(sendText)
}
};