From edc7bed3499a55f69f2a8499992b82f3739453b9 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 17 Sep 2025 22:08:36 -0700 Subject: feat(intelligent_moderator): Use Mod Mail instead of user DMs --- src/umabot/rules/intelligent_roleplay_moderator.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/umabot/rules/intelligent_roleplay_moderator.py b/src/umabot/rules/intelligent_roleplay_moderator.py index bebb42a..c1a85eb 100644 --- a/src/umabot/rules/intelligent_roleplay_moderator.py +++ b/src/umabot/rules/intelligent_roleplay_moderator.py @@ -126,7 +126,8 @@ If you believe this was done in error, please contact the moderators via Mod Mai Thank you for understanding!""" - submission.author.message(subject, message) + # Send mod mail instead of DM + self.subreddit.message(subject, message) self.logger.info(f"Sent art flair change notification to {username}") except Exception as e: @@ -165,7 +166,8 @@ If you believe this was done in error, please contact the moderators via Mod Mai Thank you for understanding!""" - submission.author.message(subject, message) + # Send mod mail instead of DM + self.subreddit.message(subject, message) self.logger.info(f"Sent low-effort removal notification to {username}") except Exception as e: -- cgit v1.2.3