diff --git a/backend/src/plugins/Automod/functions/runAutomod.ts b/backend/src/plugins/Automod/functions/runAutomod.ts index 67675565..cba8f029 100644 --- a/backend/src/plugins/Automod/functions/runAutomod.ts +++ b/backend/src/plugins/Automod/functions/runAutomod.ts @@ -15,6 +15,11 @@ export async function runAutomod(pluginData: GuildPluginData, const channel = channelId ? (pluginData.guild.channels.cache.get(channelId as Snowflake) as TextChannel) : null; const categoryId = channel?.parentId; + // Don't apply Automod on Zeppelin itself + if (userId && userId === pluginData.client.user?.id) { + return; + } + const config = await pluginData.config.getMatchingConfig({ channelId, categoryId,