import { BushInhibitor, type SlashMessage } from '#lib'; import { type Message } from 'discord.js'; export default class FatalInhibitor extends BushInhibitor { public constructor() { super('fatal', { reason: 'fatal', type: 'all', category: 'checks', priority: 100 }); } public async exec(message: Message | SlashMessage): 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]) { void client.console.verbose( 'fatal', `Blocked message with id <<${message.id}>> from <<${message.author.tag}>> in <<${message.guild?.name}>>.` ); return true; } } return false; } }