blob: 563cb7a20c7eb2375de3c220422d3c17ddc09c1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { BushCommand, BushInhibitor, BushMessage, BushSlashMessage } from '@lib';
import { TextChannel } from 'discord.js';
export default class NsfwInhibitor extends BushInhibitor {
public constructor() {
super('nsfw', {
reason: 'notNsfw',
category: 'command',
type: 'post',
priority: 25
});
}
public override async exec(message: BushMessage | BushSlashMessage, command: BushCommand): Promise<boolean> {
if (command.onlyNsfw && !(message.channel as TextChannel).nsfw) {
return true;
}
return false;
}
}
|