diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-24 18:27:42 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-24 18:27:42 -0500 |
commit | 9c83e59187b622807f8b5e8d3a514e3df4f9bd76 (patch) | |
tree | 9357d96894acfb8c582fb269775cb9c051c25881 /src/inhibitors | |
parent | 36d3ed87d744961eeba18bd5f378fd4d417f8ed5 (diff) | |
download | tanzanite-9c83e59187b622807f8b5e8d3a514e3df4f9bd76.tar.gz tanzanite-9c83e59187b622807f8b5e8d3a514e3df4f9bd76.tar.bz2 tanzanite-9c83e59187b622807f8b5e8d3a514e3df4f9bd76.zip |
fix(DisableCommand): make it actually do the correct action
Diffstat (limited to 'src/inhibitors')
-rw-r--r-- | src/inhibitors/command/globalDisabledCommand.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inhibitors/command/globalDisabledCommand.ts b/src/inhibitors/command/globalDisabledCommand.ts index 82163f0..0ec1305 100644 --- a/src/inhibitors/command/globalDisabledCommand.ts +++ b/src/inhibitors/command/globalDisabledCommand.ts @@ -12,7 +12,7 @@ export default class DisabledGuildCommandInhibitor extends BushInhibitor { public override async exec(message: BushMessage | BushSlashMessage, command: BushCommand): Promise<boolean> { if (message.author.isOwner()) return false; - if (client.cache.global.disabledCommands?.includes(command?.id)) { + if (client.cache.global.disabledCommands.includes(command?.id)) { void client.console.verbose( 'disabledGlobalCommand', `Blocked message with id <<${message.id}>> from <<${message.author.tag}>> in <<${message.guild?.name}>>.` |