From 5d33e1aa43444850084b4794b7d870e67dbb474e Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Mon, 23 Aug 2021 20:17:13 -0400 Subject: bunch of shit --- src/inhibitors/noCache.ts | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/inhibitors/noCache.ts (limited to 'src/inhibitors/noCache.ts') diff --git a/src/inhibitors/noCache.ts b/src/inhibitors/noCache.ts deleted file mode 100644 index 673f3ac..0000000 --- a/src/inhibitors/noCache.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { BushInhibitor, BushMessage, BushSlashMessage } from '@lib'; - -export default class NoCacheInhibitor extends BushInhibitor { - public constructor() { - super('noCache', { - reason: 'noCache', - type: 'all', - priority: 100 - }); - } - - public override async exec(message: BushMessage | BushSlashMessage): Promise { - if (client.isOwner(message.author)) return false; - for (const property in client.cache.global) { - if (!client.cache.global[property as keyof typeof client.cache.global]) { - client.console.debug(`NoCacheInhibitor blocked message.`); - return true; - } - } - return false; - } -} -- cgit