aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors/command/globalDisabledCommand.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/inhibitors/command/globalDisabledCommand.ts')
-rw-r--r--src/inhibitors/command/globalDisabledCommand.ts2
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}>>.`