diff --git a/src/plugins/ModActions.ts b/src/plugins/ModActions.ts index 79967732..f0b91ce0 100644 --- a/src/plugins/ModActions.ts +++ b/src/plugins/ModActions.ts @@ -398,6 +398,10 @@ export class ModActionsPlugin extends Plugin { ): Promise { let messageSent = false; + if (!useDM && !useChannel) { + return true; + } + if (useDM) { try { const dmChannel = await this.bot.getDMChannel(user.id);