aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors/noCache.ts
blob: a8f52d7eb7a42d16becd0b6c200ae6b8ada0115d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { BushInhibitor } from '../lib/extensions/BushInhibitor';
import { BushMessage } from '../lib/extensions/BushMessage';
import { BushSlashMessage } from '../lib/extensions/BushSlashMessage';

export default class noCacheInhibitor extends BushInhibitor {
	constructor() {
		super('noCache', {
			reason: 'noCache',
			type: 'all',
			priority: 100
		});
	}

	public async exec(message: BushMessage | BushSlashMessage): Promise<boolean> {
		if (this.client.isOwner(message.author)) return false;
		for (const property in this.client.cache) {
			if (property === undefined || property === null) return true;
		}
		return false;
	}
}