diff options
author | 2025-01-18 18:09:50 +0000 | |
---|---|---|
committer | 2025-01-18 18:09:50 +0000 | |
commit | e1945dcfe17cf621f97620843845a30bfe06c813 (patch) | |
tree | 2d22484b3d0462be5651db245108d3d4e9f2e99d | |
parent | Don'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.py | 2 |
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) |