aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2025-01-18 18:09:50 +0000
committerGravatar Chris Lovering <[email protected]>2025-01-18 18:09:50 +0000
commite1945dcfe17cf621f97620843845a30bfe06c813 (patch)
tree2d22484b3d0462be5651db245108d3d4e9f2e99d
parentDon't repeat start of close message in every if branch (diff)
More specific close message for native close
-rw-r--r--bot/exts/help_channels/_channel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/help_channels/_channel.py b/bot/exts/help_channels/_channel.py
index 1b847bdb8..d0f6e1b76 100644
--- a/bot/exts/help_channels/_channel.py
+++ b/bot/exts/help_channels/_channel.py
@@ -55,7 +55,7 @@ async def _close_help_post(closed_post: discord.Thread, closing_reason: _stats.C
elif closing_reason == _stats.ClosingReason.INACTIVE:
close_title += " for inactivity"
elif closing_reason == _stats.ClosingReason.NATIVE:
- close_title += " by OP"
+ close_title += " using Discord native close action"
embed.set_author(name=close_title, icon_url=CLOSED_POST_ICON_URL)