diff options
Diffstat (limited to 'src/inhibitors/noCache.ts')
-rw-r--r-- | src/inhibitors/noCache.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/inhibitors/noCache.ts b/src/inhibitors/noCache.ts index 9bddedd..d461076 100644 --- a/src/inhibitors/noCache.ts +++ b/src/inhibitors/noCache.ts @@ -10,10 +10,10 @@ export default class NoCacheInhibitor extends BushInhibitor { } public async exec(message: BushMessage | BushSlashMessage): Promise<boolean> { - if (this.client.isOwner(message.author)) return false; - for (const property in this.client.cache.global) { - if (!this.client.cache.global[property]) { - this.client.console.debug(`NoCacheInhibitor blocked message.`); + if (client.isOwner(message.author)) return false; + for (const property in client.cache.global) { + if (!client.cache.global[property]) { + client.console.debug(`NoCacheInhibitor blocked message.`); return true; } } |