From 2b06a59c57fdf7aad217d63db875cdb3d8868036 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Thu, 1 Jul 2021 20:37:34 -0400 Subject: don't judge me part 2 & fix esbuild with eval command --- src/inhibitors/commands/disabledCommand.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/inhibitors/commands') diff --git a/src/inhibitors/commands/disabledCommand.ts b/src/inhibitors/commands/disabledCommand.ts index 5b47ce3..6936a41 100644 --- a/src/inhibitors/commands/disabledCommand.ts +++ b/src/inhibitors/commands/disabledCommand.ts @@ -4,7 +4,7 @@ import { BushSlashMessage } from '../../lib/extensions/discord-akairo/BushSlashM import { BushMessage } from '../../lib/extensions/discord.js/BushMessage'; export default class DisabledCommandInhibitor extends BushInhibitor { - constructor() { + public constructor() { super('disabledCommand', { reason: 'disabled', type: 'pre', @@ -14,6 +14,9 @@ export default class DisabledCommandInhibitor extends BushInhibitor { public async exec(message: BushMessage | BushSlashMessage, command: BushCommand): Promise { if (this.client.isOwner(message.author)) return false; - return this.client.cache.global.disabledCommands.includes(command?.id); + if (this.client.cache.global.disabledCommands.includes(command?.id)) { + this.client.console.debug(`DisabledCommandInhibitor blocked message.`); + return true; + } } } -- cgit