aboutsummaryrefslogtreecommitdiff
path: root/src/inhibitors/blacklist/guildBlacklist.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/inhibitors/blacklist/guildBlacklist.ts')
-rw-r--r--src/inhibitors/blacklist/guildBlacklist.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/inhibitors/blacklist/guildBlacklist.ts b/src/inhibitors/blacklist/guildBlacklist.ts
index 636d0a3..b1f1543 100644
--- a/src/inhibitors/blacklist/guildBlacklist.ts
+++ b/src/inhibitors/blacklist/guildBlacklist.ts
@@ -1,17 +1,17 @@
-import { BotInhibitor, type CommandMessage, type SlashMessage } from '#lib';
+import { BotInhibitor, InhibitorReason, InhibitorType, type CommandMessage, type SlashMessage } from '#lib';
export default class GuildBlacklistInhibitor extends BotInhibitor {
public constructor() {
- super('guildBlacklist', {
- reason: 'guildBlacklist',
- type: 'all',
+ super(InhibitorReason.GuildBlacklist, {
+ reason: InhibitorReason.GuildBlacklist,
+ type: InhibitorType.All,
priority: 50
});
}
public exec(message: CommandMessage | SlashMessage): boolean {
if (!message.author || !message.inGuild()) return false;
- // do not change to message.author.isOwner()
+ //! do not change to message.author.isOwner()
if (
this.client.isOwner(message.author) ||
this.client.isSuperUser(message.author) ||
@@ -20,7 +20,7 @@ export default class GuildBlacklistInhibitor extends BotInhibitor {
return false;
if (this.client.cache.global.blacklistedGuilds.includes(message.guild.id)) {
void this.client.console.verbose(
- 'guildBlacklist',
+ InhibitorReason.GuildBlacklist,
`Blocked message with id <<${message.id}>> from <<${message.author.tag}>> in <<${message.guild.name}>>.`
);
return true;