blob: db4680116ec33c8fe34ef9ee1fd5af59bea98109 (
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
|
import { BushInhibitor } from '../lib/extensions/discord-akairo/BushInhibitor';
import { BushSlashMessage } from '../lib/extensions/discord-akairo/BushSlashMessage';
import { BushMessage } from '../lib/extensions/discord.js/BushMessage';
export default class NoCacheInhibitor extends BushInhibitor {
public 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) {
this.client.console.debug(`NoCacheInhibitor blocked message.`);
return true;
}
}
return false;
}
}
|