From 0268beaf24d7eb2e9e83b575a81ca3a139927717 Mon Sep 17 00:00:00 2001 From: ajax146 <31014239+ajax146@users.noreply.github.com> Date: Mon, 15 Jun 2026 14:56:46 -0700 Subject: [PATCH 1/2] This fixes the data for automod block logging --- modules/moderation/modlog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/moderation/modlog.py b/modules/moderation/modlog.py index 4c8bfef3..bbc5f68a 100644 --- a/modules/moderation/modlog.py +++ b/modules/moderation/modlog.py @@ -420,7 +420,7 @@ async def on_automod_action(self: Self, execution: discord.AutoModAction) -> Non guild=rule.guild, member=member, reason=rule.name, - data=f"**Violating name:** {member.display_name}", + data=f"**Violating content:** {execution.content[:200]}", ) else: await log_action( From 2880d5845c3986540f3eefce519c0ee0c6cee15e Mon Sep 17 00:00:00 2001 From: ajax146 <31014239+ajax146@users.noreply.github.com> Date: Mon, 15 Jun 2026 15:10:08 -0700 Subject: [PATCH 2/2] Changelog --- changelog.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog.md b/changelog.md index b3f49e89..eb899500 100644 --- a/changelog.md +++ b/changelog.md @@ -15,6 +15,9 @@ Changes since 2026.06.15 ### Moderator - Fix /mute command using the wrong datetime object +### Modlog +- Fix the data entry field for the automod block action type + ### Nickname - Fix config call missing guild ID