Add ability to disable commands

This commit is contained in:
Ethan Lane 2021-09-22 19:54:49 +01:00
parent 10fe4501b5
commit 4e1c418246
Signed by: Vylpes
GPG key ID: EED233CC06D12504
3 changed files with 19 additions and 5 deletions

View file

@ -22,6 +22,15 @@ export class Util {
message: "Member is not part of message",
};
const disabledCommands = process.env.COMMANDS_DISABLED?.split(',');
if (disabledCommands?.find(x => x == name)) {
return {
valid: false,
message: "Command is disabled",
};
}
const folder = process.env.FOLDERS_COMMANDS;
if (existsSync(`${process.cwd()}/${folder}/`)) {