aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors/checks/fatal.ts
blob: 411357cdd49252616ca638c60554f5a1fdae7ce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { BushInhibitor, type BushMessage, type BushSlashMessage } from '#lib';

export default class FatalInhibitor extends BushInhibitor {
	public constructor() {
		super('fatal', {
			reason: 'fatal',
			type: 'all',
			category: 'checks',
			priority: 100
		});
	}

	public override async exec(message: BushMessage | BushSlashMessage): Promise<boolean> {
		if (message.author.isOwner()) 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;
	}
}