aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2025-01-18 18:10:06 +0000
committerGravatar Chris Lovering <[email protected]>2025-01-18 18:10:06 +0000
commitb237eef91cb48c8be2df5c215ac67f75e5c5b394 (patch)
tree52ff23b7f22dd7f75152814c613f9bd9f3fd4590
parentMore specific close message for native close (diff)
!close can also be used by moderators, not just OP
-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 d0f6e1b76..1de6e5a83 100644
--- a/bot/exts/help_channels/_channel.py
+++ b/bot/exts/help_channels/_channel.py
@@ -51,7 +51,7 @@ async def _close_help_post(closed_post: discord.Thread, closing_reason: _stats.C
if closing_reason == _stats.ClosingReason.CLEANUP:
close_title += " as OP left server"
elif closing_reason == _stats.ClosingReason.COMMAND:
- close_title += f" by OP with {constants.Bot.prefix}close"
+ close_title += f" with {constants.Bot.prefix}close"
elif closing_reason == _stats.ClosingReason.INACTIVE:
close_title += " for inactivity"
elif closing_reason == _stats.ClosingReason.NATIVE: