blob: 08e5556d3062daee4eb35974656ea0d8bdfaaf72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { BotInhibitor, InhibitorReason, InhibitorType, type BotCommand, type CommandMessage, type SlashMessage } from '#lib';
import { type TextChannel } from 'discord.js';
export default class NotNsfwInhibitor extends BotInhibitor {
public constructor() {
super(InhibitorReason.NotNsfw, {
reason: InhibitorReason.NotNsfw,
type: InhibitorType.Post,
priority: 25
});
}
public async exec(message: CommandMessage | SlashMessage, command: BotCommand): Promise<boolean> {
if (command.onlyNsfw && !(message.channel as TextChannel).nsfw) {
void this.client.console.verbose(
InhibitorReason.NotNsfw,
`Blocked message with id <<${message.id}>> from <<${message.author.tag}>> in <<${message.guild?.name}>>.`
);
return true;
}
return false;
}
}
|