aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors/command/restrictedChannel.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-11-07 09:25:13 -0500
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-11-07 09:25:13 -0500
commita39aa8c11a3fd5dd5f007865960ef5429744f057 (patch)
treeee5b25025f07cd5ae2718ab251f1471847eb5cb8 /src/inhibitors/command/restrictedChannel.ts
parentc501d4c45e19b47f6fb358253c7ff3a1413da222 (diff)
downloadtanzanite-a39aa8c11a3fd5dd5f007865960ef5429744f057.tar.gz
tanzanite-a39aa8c11a3fd5dd5f007865960ef5429744f057.tar.bz2
tanzanite-a39aa8c11a3fd5dd5f007865960ef5429744f057.zip
made some constants enums and fixed perm check overriding inhibitors
Diffstat (limited to 'src/inhibitors/command/restrictedChannel.ts')
-rw-r--r--src/inhibitors/command/restrictedChannel.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/inhibitors/command/restrictedChannel.ts b/src/inhibitors/command/restrictedChannel.ts
index 0f5efce..265200e 100644
--- a/src/inhibitors/command/restrictedChannel.ts
+++ b/src/inhibitors/command/restrictedChannel.ts
@@ -13,6 +13,7 @@ export default class RestrictedChannelInhibitor extends BushInhibitor {
public override async exec(message: BushMessage | BushSlashMessage, command: BushCommand): Promise<boolean> {
if (command.restrictedChannels?.length && message.channel) {
if (!command.restrictedChannels.includes(message.channel.id)) {
+ void client.console.verbose('restrictedChannel', `Blocked message with id <<${message.id}>> from <<${message.author.tag}>> in <<${message.guild?.name}>>.`)
return true;
}
}