blob: ba798c22702ecef353a08ec2805a799866317856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { BushInhibitor, type BushCommand, type BushMessage, type BushSlashMessage } from '@lib';
import { type 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;
}
}
|