aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors/checks/fatal.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/inhibitors/checks/fatal.ts')
-rw-r--r--src/inhibitors/checks/fatal.ts9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/inhibitors/checks/fatal.ts b/src/inhibitors/checks/fatal.ts
index a3601b5..9fda504 100644
--- a/src/inhibitors/checks/fatal.ts
+++ b/src/inhibitors/checks/fatal.ts
@@ -12,10 +12,11 @@ export default class FatalInhibitor extends BushInhibitor {
}
public async exec(message: Message | SlashMessage): Promise<boolean> {
- 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]) {
- void client.console.verbose(
+ if (this.client.isOwner(message.author)) return false;
+ const globalCache = this.client.cache.global;
+ for (const property in globalCache) {
+ if (!globalCache[property as keyof typeof globalCache]) {
+ void this.client.console.verbose(
'fatal',
`Blocked message with id <<${message.id}>> from <<${message.author.tag}>> in <<${message.guild?.name}>>.`
);