From a8224ed9b798be161dc7539722203b2bfa8476ef Mon Sep 17 00:00:00 2001 From: Slipstream Date: Thu, 5 Jun 2025 22:46:40 -0600 Subject: [PATCH] Fix default value for guild moderation configuration check --- cogs/aimod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/aimod.py b/cogs/aimod.py index 5587ed3..aa1d706 100644 --- a/cogs/aimod.py +++ b/cogs/aimod.py @@ -1852,7 +1852,7 @@ CRITICAL: Do NOT output anything other than the required JSON response. print(f"Ignoring message {message.id} from DM.") return # Check if moderation is enabled for this guild - if not get_guild_config(message.guild.id, "ENABLED", True): + if not get_guild_config(message.guild.id, "ENABLED", False): print( f"Moderation disabled for guild {message.guild.id}. Ignoring message {message.id}." )